Skip to content

Commit

Permalink
Provide defaults for cron expression and timezone.
Browse files Browse the repository at this point in the history
  • Loading branch information
sfczekalski committed Aug 7, 2024
1 parent 98a014d commit 86a2daf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kedro_vertexai/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ class MLFlowVertexAIConfig(BaseModel):


class ScheduleConfig(BaseModel):
cron_expression: str
timezone: str
cron_expression: Optional[str] = "0 * * * *"
timezone: Optional[str] = "Etc/UTC"
start_time: Optional[str] = None
end_time: Optional[str] = None
allow_queueing: Optional[bool] = False
Expand Down

0 comments on commit 86a2daf

Please sign in to comment.