@@ -771,10 +771,6 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str:
771771# Mapping of localities (e.g. "us", "de") to their constituent cells (e.g. "us1", "us2")
772772SENTRY_LOCALITIES : list [LocalityConfig ] = []
773773
774- # TODO(cells): Superceded by SENTRY_LOCAL_CELL and SENTRY_CELLS. Remove once migration is complete.
775- SENTRY_REGION = os .environ .get ("SENTRY_REGION" , None )
776- SENTRY_REGION_CONFIG : list [CellConfig ] = []
777-
778774# Shared secret used to sign cross-region RPC requests.
779775RPC_SHARED_SECRET : list [str ] | None = None
780776
@@ -882,6 +878,7 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str:
882878 "sentry.integrations.github.tasks.codecov_account_unlink" ,
883879 "sentry.integrations.github.tasks.link_all_repos" ,
884880 "sentry.integrations.github.tasks.pr_comment" ,
881+ "sentry.integrations.github.tasks.sync_repos" ,
885882 "sentry.integrations.github.tasks.sync_repos_on_install_change" ,
886883 "sentry.integrations.gitlab.tasks" ,
887884 "sentry.integrations.jira.tasks" ,
@@ -1016,6 +1013,10 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str:
10161013 "task" : "workflow_engine:sentry.workflow_engine.tasks.workflows.schedule_delayed_workflows" ,
10171014 "schedule" : timedelta (seconds = 15 ),
10181015 },
1016+ "prune-old-open-period-activity" : {
1017+ "task" : "workflow_engine:sentry.workflow_engine.tasks.cleanup.prune_old_open_period_activity" ,
1018+ "schedule" : timedelta (minutes = 2 ),
1019+ },
10191020 "resolve-stale-sourcemap-detectors" : {
10201021 "task" : "workflow_engine:sentry.processing_errors.tasks.resolve_stale_sourcemap_detectors" ,
10211022 "schedule" : crontab ("*/5" , "*" , "*" , "*" , "*" ),
@@ -1250,6 +1251,10 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str:
12501251 "task" : "sdk.control:sentry.tasks.release_registry.fetch_release_registry_data_control" ,
12511252 "schedule" : crontab ("*/5" , "*" , "*" , "*" , "*" ),
12521253 },
1254+ "github-repo-sync-beat" : {
1255+ "task" : "integrations.control:sentry.integrations.github.tasks.sync_repos.github_repo_sync_beat" ,
1256+ "schedule" : timedelta (minutes = 1 ),
1257+ },
12531258}
12541259
12551260if SILO_MODE == "CONTROL" :
0 commit comments