Skip to content

Commit

Permalink
fix: schedule cron
Browse files Browse the repository at this point in the history
  • Loading branch information
cbini committed Jul 2, 2024
1 parent 3bf861d commit 8d2e2d5
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

powerschool_extract_assets_schedule = ScheduleDefinition(
job=powerschool_extract_asset_job,
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

Expand Down
2 changes: 1 addition & 1 deletion src/teamster/code_locations/kippmiami/datagun/schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

powerschool_extract_assets_schedule = ScheduleDefinition(
job=powerschool_extract_asset_job,
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

powerschool_extract_assets_schedule = ScheduleDefinition(
job=powerschool_extract_asset_job,
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

adp_wfn_worker_fields_update_schedule = ScheduleDefinition(
job=adp_wfn_update_workers_job,
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

Expand Down
8 changes: 4 additions & 4 deletions src/teamster/code_locations/kipptaf/datagun/schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

coupa_extract_assets_schedule = ScheduleDefinition(
job=coupa_extract_asset_job,
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

Expand All @@ -33,7 +33,7 @@

egencia_extract_assets_schedule = ScheduleDefinition(
job=egencia_extract_asset_job,
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

Expand All @@ -46,13 +46,13 @@

illuminate_extract_assets_schedule = ScheduleDefinition(
job=illuminate_extract_asset_job,
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

littlesis_extract_assets_schedule = ScheduleDefinition(
job=littlesis_extract_asset_job,
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

google_directory_role_assignments_sync_schedule = ScheduleDefinition(
job=google_directory_role_assignments_sync_job,
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

Expand Down
2 changes: 1 addition & 1 deletion src/teamster/code_locations/kipptaf/ldap/schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

ldap_asset_job_schedule = ScheduleDefinition(
job=ldap_asset_job,
cron_schedule="45 4 * * *",
cron_schedule="10 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def schoolmint_grow_static_partition_asset_job_schedule():
)

schoolmint_grow_user_update_job_schedule = ScheduleDefinition(
cron_schedule="0 5 * * *",
cron_schedule="30 5 * * *",
execution_timezone=LOCAL_TIMEZONE.name,
job=schoolmint_grow_user_update_job,
)
Expand Down

0 comments on commit 8d2e2d5

Please sign in to comment.