Explorar el Código

fix: GenerateAnalysisPdfJob 指定队列 $queue = 'pdf'

大侠咬超人 hace 1 mes
padre
commit
438c81e371
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      app/Jobs/GenerateAnalysisPdfJob.php

+ 5 - 0
app/Jobs/GenerateAnalysisPdfJob.php

@@ -14,6 +14,11 @@ class GenerateAnalysisPdfJob implements ShouldQueue
 {
     use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
 
+    /**
+     * 指定队列名称 - PDF 生成需要 Chrome,必须在 pdf 队列处理
+     */
+    public string $queue = 'pdf';
+
     public string $paperId;
     public string $studentId;
     public ?string $recordId;