fix:Queue retry_after 90초→1860초 (영상생성 Job 타임아웃 방지)
영상 생성 Job이 10~20분 소요되는데 retry_after=90초로 설정되어 DB 큐 드라이버가 Job을 "멈춤"으로 판단하여 재시도 → tries 초과 실패 retry_after를 Job timeout(1800초)보다 크게 설정하여 해결 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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,
|
||||
],
|
||||
|
||||
|
||||
Reference in New Issue
Block a user