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 fa07c87 commit f055f51Copy full SHA for f055f51
examples/ts-parallel-scraping/orchestrator/src/main.ts
@@ -59,7 +59,7 @@ if (state.isInitialized) {
59
state.isInitialized = true;
60
}
61
62
-const parallelRunPromises = state.parallelRunIds.map((runId) => {
+const parallelRunPromises = state.parallelRunIds.map(async (runId) => {
63
const runClient = apifyClient.run(runId);
64
return runClient.waitForFinish();
65
});
0 commit comments