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 f739407 commit a65519bCopy full SHA for a65519b
references/v3-catalog/src/queues.ts
@@ -1,6 +1,7 @@
1
import dotenv from "dotenv";
2
import { simpleChildTask } from "./trigger/subtasks";
3
import { wait } from "@trigger.dev/sdk/v3";
4
+import { setTimeout } from "timers/promises";
5
6
dotenv.config();
7
@@ -56,7 +57,7 @@ export async function run() {
56
57
},
58
]);
59
- await wait.for({ seconds: 5 });
60
+ await setTimeout(10_000);
61
62
//this should set the concurrencyLimit back to none
63
await simpleChildTask.trigger(
0 commit comments