Skip to content

Commit

Permalink
Set broker_connection_retry_on_startup = True
Browse files Browse the repository at this point in the history
The broker_connection_retry configuration setting will no longer determine
whether broker connection retries are made during startup in Celery 6.0 and above.
If you wish to retain the existing behavior for retrying connections on startup,
you should set broker_connection_retry_on_startup to True.

Signed-off-by: Christian Berendt <[email protected]>
  • Loading branch information
berendt committed Oct 29, 2023
1 parent f77a2be commit df12900
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions osism/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@


class Config:
broker_connection_retry_on_startup = True
enable_utc = True
enable_bifrost = os.environ.get("ENABLE_BIFROST", "False")
enable_ironic = os.environ.get("ENABLE_IRONIC", "True")
Expand Down

0 comments on commit df12900

Please sign in to comment.