From 1db400be6fc98403b07dc281009026eee562262d Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 7 May 2025 04:08:36 +0300 Subject: [PATCH] Refactor celery command formatting in docker-compose.yml Updated the Celery worker command in docker-compose.yml for better readability and consistency using line continuation characters. Ensured no functional changes were introduced during the formatting update. --- docker-compose.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 027f7125..99fa3b1e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -45,13 +45,13 @@ services: build: . restart: always command: > - sh -c "poetry run celery -A evibes worker - --loglevel=info - --concurrency=4 - --autoscale=4,2 - --max-tasks-per-child=100 - --max-memory-per-child=512000 - --soft-time-limit=7200 + sh -c "poetry run celery -A evibes worker \ + --loglevel=info \ + --concurrency=4 \ + --autoscale=4,2 \ + --max-tasks-per-child=100 \ + --max-memory-per-child=512000 \ + --soft-time-limit=7200 \ --time-limit=10800" volumes: - .:/app