From bbedb6781718dbf229b8100f58f3640c89160e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Sun, 15 Feb 2026 10:22:47 +0900 Subject: [PATCH] =?UTF-8?q?fix:Queue=20retry=5Fafter=2090=EC=B4=88?= =?UTF-8?q?=E2=86=921860=EC=B4=88=20(=EC=98=81=EC=83=81=EC=83=9D=EC=84=B1?= =?UTF-8?q?=20Job=20=ED=83=80=EC=9E=84=EC=95=84=EC=9B=83=20=EB=B0=A9?= =?UTF-8?q?=EC=A7=80)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 영상 생성 Job이 10~20분 소요되는데 retry_after=90초로 설정되어 DB 큐 드라이버가 Job을 "멈춤"으로 판단하여 재시도 → tries 초과 실패 retry_after를 Job timeout(1800초)보다 크게 설정하여 해결 Co-Authored-By: Claude Opus 4.6 --- config/queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/queue.php b/config/queue.php index 79c2c0a2..3d58f8ab 100644 --- a/config/queue.php +++ b/config/queue.php @@ -40,7 +40,7 @@ 'connection' => env('DB_QUEUE_CONNECTION'), 'table' => env('DB_QUEUE_TABLE', 'jobs'), 'queue' => env('DB_QUEUE', 'default'), - 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), + 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 1860), 'after_commit' => false, ],