Futa Arai 10 месяцев назад
Родитель
Сommit
fcb2727a70
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      apps/pdf-converter/src/controllers/pdf.ts

+ 1 - 1
apps/pdf-converter/src/controllers/pdf.ts

@@ -36,7 +36,7 @@ class PdfCtrl {
   ): Promise<{ status: JobStatus } | undefined> {
     const expirationDate = new Date(expirationDateStr);
     try {
-      await this.pdfConvertService.registerOrUpdateJob(orgId, appId, jobId, expirationDate, growiJobStatus);
+      await this.pdfConvertService.registerOrUpdateJob(jobId, expirationDate, growiJobStatus, orgId, appId);
       const status = this.pdfConvertService.getJobStatus(jobId); // get status before cleanup
       this.pdfConvertService.cleanUpJobList();
       return { status };