From 8d2e2d534da27aca469901cdbce2d29c20277cea Mon Sep 17 00:00:00 2001 From: Charlie Bini <5003326+cbini@users.noreply.github.com> Date: Tue, 2 Jul 2024 21:44:39 +0000 Subject: [PATCH] fix: schedule cron --- .../code_locations/kippcamden/datagun/schedules.py | 2 +- .../code_locations/kippmiami/datagun/schedules.py | 2 +- .../code_locations/kippnewark/datagun/schedules.py | 2 +- .../kipptaf/adp/workforce_now/api/schedules.py | 2 +- src/teamster/code_locations/kipptaf/datagun/schedules.py | 8 ++++---- .../code_locations/kipptaf/google/directory/schedules.py | 2 +- src/teamster/code_locations/kipptaf/ldap/schedules.py | 2 +- .../code_locations/kipptaf/schoolmint/grow/schedules.py | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/teamster/code_locations/kippcamden/datagun/schedules.py b/src/teamster/code_locations/kippcamden/datagun/schedules.py index 41751be75d..15a282d88a 100644 --- a/src/teamster/code_locations/kippcamden/datagun/schedules.py +++ b/src/teamster/code_locations/kippcamden/datagun/schedules.py @@ -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, ) diff --git a/src/teamster/code_locations/kippmiami/datagun/schedules.py b/src/teamster/code_locations/kippmiami/datagun/schedules.py index 7061a90d14..8b24e434fe 100644 --- a/src/teamster/code_locations/kippmiami/datagun/schedules.py +++ b/src/teamster/code_locations/kippmiami/datagun/schedules.py @@ -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, ) diff --git a/src/teamster/code_locations/kippnewark/datagun/schedules.py b/src/teamster/code_locations/kippnewark/datagun/schedules.py index 50da5ab9a2..92aed0909c 100644 --- a/src/teamster/code_locations/kippnewark/datagun/schedules.py +++ b/src/teamster/code_locations/kippnewark/datagun/schedules.py @@ -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, ) diff --git a/src/teamster/code_locations/kipptaf/adp/workforce_now/api/schedules.py b/src/teamster/code_locations/kipptaf/adp/workforce_now/api/schedules.py index b408735203..8046a8b9c5 100644 --- a/src/teamster/code_locations/kipptaf/adp/workforce_now/api/schedules.py +++ b/src/teamster/code_locations/kipptaf/adp/workforce_now/api/schedules.py @@ -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, ) diff --git a/src/teamster/code_locations/kipptaf/datagun/schedules.py b/src/teamster/code_locations/kipptaf/datagun/schedules.py index e1c849a60e..37fe8574c4 100644 --- a/src/teamster/code_locations/kipptaf/datagun/schedules.py +++ b/src/teamster/code_locations/kipptaf/datagun/schedules.py @@ -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, ) @@ -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, ) @@ -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, ) diff --git a/src/teamster/code_locations/kipptaf/google/directory/schedules.py b/src/teamster/code_locations/kipptaf/google/directory/schedules.py index 9bf36ed468..80302c168c 100644 --- a/src/teamster/code_locations/kipptaf/google/directory/schedules.py +++ b/src/teamster/code_locations/kipptaf/google/directory/schedules.py @@ -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, ) diff --git a/src/teamster/code_locations/kipptaf/ldap/schedules.py b/src/teamster/code_locations/kipptaf/ldap/schedules.py index 1e7f97f7a5..60423923ee 100644 --- a/src/teamster/code_locations/kipptaf/ldap/schedules.py +++ b/src/teamster/code_locations/kipptaf/ldap/schedules.py @@ -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, ) diff --git a/src/teamster/code_locations/kipptaf/schoolmint/grow/schedules.py b/src/teamster/code_locations/kipptaf/schoolmint/grow/schedules.py index 70bab0d38a..2de3d7979e 100644 --- a/src/teamster/code_locations/kipptaf/schoolmint/grow/schedules.py +++ b/src/teamster/code_locations/kipptaf/schoolmint/grow/schedules.py @@ -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, )