From b4225fb77611efc441e777986483c7e976c171ba Mon Sep 17 00:00:00 2001 From: Eric Rosas Date: Wed, 27 Sep 2023 16:05:53 -0600 Subject: [PATCH] Override runQueueAutomatically default value EPO-8521 Override runQueueAutomatically default value for supervisord --- api/config/general.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/config/general.php b/api/config/general.php index e98df902..129d317a 100755 --- a/api/config/general.php +++ b/api/config/general.php @@ -16,6 +16,10 @@ return [ // Global settings '*' => [ + // Disable automatic running of queue jobs upon page loads in CP, which causes queue jobs to fail + // Supervisord now handles running queue jobs + 'runQueueAutomatically' => false, + // Default Week Start Day (0 = Sunday, 1 = Monday...) 'defaultWeekStartDay' => 1,