Skip to content

Commit 1a5b9cc

Browse files
authored
fix(dynamic-sampling) Run prioritise transactions task every 6 minutes (#46666)
1 parent 3ac8c6b commit 1a5b9cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sentry/conf/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -895,8 +895,8 @@ def SOCIAL_AUTH_DEFAULT_USERNAME():
895895
},
896896
"dynamic-sampling-prioritize-transactions": {
897897
"task": "sentry.dynamic_sampling.tasks.prioritise_transactions",
898-
# Run job every hour at min 10
899-
"schedule": crontab(minute=10),
898+
# Run every 5 minutes
899+
"schedule": timedelta(minutes=6),
900900
},
901901
}
902902

0 commit comments

Comments
 (0)