Skip to content

Commit 79d1ebf

Browse files
kconspriscilawebdev
authored andcommitted
chore(aci): More frequent schedule_delayed_workflows (#102150)
We can switch to every 15s without negatively impacting existing scheduling, but it'll make it possible for us to tweak US to actually every 15 (rather than ever 20), allowing 4 per minute rather than 3.
1 parent 5168edc commit 79d1ebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/conf/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str:
951951
},
952952
"flush-delayed-workflows": {
953953
"task": "workflow_engine:sentry.workflow_engine.tasks.workflows.schedule_delayed_workflows",
954-
"schedule": timedelta(seconds=20),
954+
"schedule": timedelta(seconds=15),
955955
},
956956
"sync-options": {
957957
"task": "options:sentry.tasks.options.sync_options",

0 commit comments

Comments
 (0)