From 12a189f5858f49fc5dfb3ccbf157522553c6720a Mon Sep 17 00:00:00 2001 From: Boy132 Date: Mon, 30 Sep 2024 14:43:35 +0200 Subject: [PATCH] Remove old queue worker args in docker supervisord (#596) --- .github/docker/supervisord.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/docker/supervisord.conf b/.github/docker/supervisord.conf index 4d6b745c8..237c0dbdb 100644 --- a/.github/docker/supervisord.conf +++ b/.github/docker/supervisord.conf @@ -25,7 +25,7 @@ autostart=true autorestart=true [program:queue-worker] -command=/usr/local/bin/php /var/www/html/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3 +command=/usr/local/bin/php /var/www/html/artisan queue:work --tries=3 user=www-data autostart=true autorestart=true @@ -36,4 +36,4 @@ autostart=%(ENV_SUPERVISORD_CADDY)s autorestart=%(ENV_SUPERVISORD_CADDY)s priority=10 stdout_events_enabled=true -stderr_events_enabled=true \ No newline at end of file +stderr_events_enabled=true