Skip to content

Commit 21fce8c

Browse files
committed
fix typo for manifest.json scheduled app type
1 parent f442cd0 commit 21fce8c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/corva/models/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class AppType(str, Enum):
1111
STREAM = "stream"
1212
TASK = "task"
13-
SCHEDULED = "scheduled"
13+
SCHEDULER = "scheduler"
1414

1515

1616
class CorvaBaseEvent(pydantic.BaseModel):

src/corva/models/scheduled/raw.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class RawScheduledEvent(CorvaBaseEvent, RawBaseEvent):
3434

3535
@classmethod
3636
def get_app_type(cls) -> AppType:
37-
return AppType.SCHEDULED
37+
return AppType.SCHEDULER
3838

3939
@staticmethod
4040
def from_raw_event(event: Union[dict, List[List[dict]]]) -> List[RawScheduledEvent]:

tests/unit/test_apps_event_types.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ def lambda_handler(_event, _api):
129129
'app_decorator,manifested_app_type',
130130
(
131131
(task, "stream"),
132-
(task, "scheduled"),
132+
(task, "scheduler"),
133133
(scheduled, "task"),
134134
(scheduled, "stream"),
135135
(stream, "task"),
136-
(stream, "scheduled"),
136+
(stream, "scheduler"),
137137
),
138138
)
139139
def test__lambda_with_mismatched_manifested_type__raise_error(
@@ -187,7 +187,7 @@ def test__validate_app_type_with_wrong_app_type_at_manifest__raise_error(context
187187
(
188188
("task", RawTaskEvent),
189189
("stream", RawStreamEvent),
190-
("scheduled", RawScheduledEvent),
190+
("scheduler", RawScheduledEvent),
191191
),
192192
)
193193
def test__right_manifested_app_type_and_raw_event_type_passed__success(

0 commit comments

Comments
 (0)