Skip to content

Commit

Permalink
fix(queries): Increase max retries when async queries hit concurrency (
Browse files Browse the repository at this point in the history
  • Loading branch information
webjunkie authored Aug 5, 2024
1 parent 9186a5b commit 940131a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/tasks/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def redis_heartbeat() -> None:
),
retry_backoff=1,
retry_backoff_max=10,
max_retries=3,
max_retries=10,
expires=60 * 10, # Do not run queries that got stuck for more than this
reject_on_worker_lost=True,
)
Expand Down

0 comments on commit 940131a

Please sign in to comment.