Browse Source

feat(unified-consumer): Set default max poll interval to 45 seconds (#53463)

We've been running with this value in the indexer for quite a while now,
let's roll it this default to all consumers.
Lyn Nagara 1 year ago
parent
commit
00bc8720b3
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/sentry/runner/commands/run.py

+ 1 - 0
src/sentry/runner/commands/run.py

@@ -684,6 +684,7 @@ def profiles_consumer(**options):
 @click.option(
     "--max-poll-interval-ms",
     type=int,
+    default=45000,
 )
 @click.option(
     "--synchronize-commit-log-topic",