diff --git a/Probe/Index.ts b/Probe/Index.ts index 4f576b811e..613075a908 100644 --- a/Probe/Index.ts +++ b/Probe/Index.ts @@ -20,7 +20,10 @@ const init: Function = async (): Promise => { let workers: number = 0; while (workers < PROBE_MONITORING_WORKERS) { - await new FetchListAndProbe().run(); + new FetchListAndProbe().run().catch((err: any) => { + logger.error('FetchListAndProbe Failed:'); + logger.error(err); + }); workers++; } } catch (err) {