We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85f67ad commit d2bf742Copy full SHA for d2bf742
index.ts
@@ -443,6 +443,9 @@ export default class UploadPlugin extends AdminForthPlugin {
443
if (!job) {
444
return { error: "Job not found" };
445
}
446
+ if (job.status === 'completed') {
447
+ setTimeout(() => jobs.delete(jobId), 60_000);
448
+ }
449
return { ok: true, job };
450
451
});
0 commit comments