aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workers/crawlerWorker.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/workers/crawlerWorker.ts')
-rw-r--r--apps/workers/crawlerWorker.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/workers/crawlerWorker.ts b/apps/workers/crawlerWorker.ts
index bb226a27..76348821 100644
--- a/apps/workers/crawlerWorker.ts
+++ b/apps/workers/crawlerWorker.ts
@@ -114,6 +114,10 @@ async function launchBrowser() {
logger.error(
"[Crawler] Failed to connect to the browser instance, will retry in 5 secs",
);
+ if (isShuttingDown) {
+ logger.info("[Crawler] We're shutting down so won't retry.");
+ return;
+ }
setTimeout(() => {
launchBrowser();
}, 5000);