diff --git a/worker/README.md b/worker/README.md index 6013df141..a37a40683 100644 --- a/worker/README.md +++ b/worker/README.md @@ -1,6 +1,6 @@ # airtime-celery -airtime-celery is a [Celery](https://docs.celeryproject.org/) daemon for handling backend tasks asynchronously. Communication and the Celery results backend are both handled with amqp (RabbitMQ). +airtime-celery is a [Celery](https://docs.celeryq.dev/) daemon for handling backend tasks asynchronously. Communication and the Celery results backend are both handled with amqp (RabbitMQ). # Installation @@ -8,7 +8,7 @@ airtime-celery is a [Celery](https://docs.celeryproject.org/) daemon for handlin sudo python3 setup.py install ``` -Each instance of airtime-celery has its own worker, and multiple instances can be run in parallel. [Celery is thread-safe](https://docs.celeryproject.org/en/latest/userguide/application.html), so this parallelization won't cause conflicts. +Each instance of airtime-celery has its own worker, and multiple instances can be run in parallel. [Celery is thread-safe](https://docs.celeryq.dev/en/latest/userguide/application.html), so this parallelization won't cause conflicts. # Developers