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 b740164 commit 026a6a3Copy full SHA for 026a6a3
1 file changed
src/lib/server/job-executors/build.ts
@@ -50,7 +50,12 @@ export async function product(job: Job<BullMQ.Build.Product>): Promise<unknown>
50
});
51
}
52
const name = pollName(build.id);
53
- job.log(`repeat opts: ${JSON.stringify(BullMQ.RepeatEveryMinute)}`);
+ /**
54
+ * For some arcane reason, adding this line prevents RepeatEveryMinute from being transpiled as an empty object???
55
+ * I have no idea why this is necessary here, but not in Scriptoria...
56
+ * - Aidan
57
+ */
58
+ void BullMQ.RepeatEveryMinute.pattern;
59
await getQueues().Polling.upsertJobScheduler(name, BullMQ.RepeatEveryMinute, {
60
name,
61
data: {
0 commit comments