You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CeleryPingHealthCheck makes use of celery.app.control.ping with timeout argument set.
But celery always wait for timeout seconds before returning the responses, which is a bit counter-intuitive.
If what we want here is to return the ping result immediately after receiving the responses, we will need to specify limit=<num_of_celery_workers_expect_to_see> as documented in Celery's documentation.
The text was updated successfully, but these errors were encountered:
CeleryPingHealthCheck makes use of
celery.app.control.ping
withtimeout
argument set.But celery always wait for
timeout
seconds before returning the responses, which is a bit counter-intuitive.If what we want here is to return the ping result immediately after receiving the responses, we will need to specify
limit=<num_of_celery_workers_expect_to_see>
as documented in Celery's documentation.The text was updated successfully, but these errors were encountered: