worker_ready_handler
worker_ready_handler
def worker_ready_handler(
sender: object,
**kwargs: dict
) - > null
Handles the signal emitted when a Celery worker has finished its startup process and is ready to process tasks.
Parameters
| Name | Type | Description |
|---|---|---|
| sender | object | The Celery worker instance that has become ready. |
| **kwargs | dict | Additional keyword arguments passed by the signal dispatcher, such as the worker's configuration or state. |
Returns
| Type | Description |
|---|---|
null | Nothing is returned by this signal handler. |