From 0104a671b7959b801e33435e89fafde0cd00ff74 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Thu, 24 Apr 2025 09:32:51 +0100 Subject: [PATCH] refactor: Remove unnecessary whitespace in FetchListAndProbe run method --- Probe/Jobs/Monitor/FetchList.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/Probe/Jobs/Monitor/FetchList.ts b/Probe/Jobs/Monitor/FetchList.ts index 52d546cdee..20653246cf 100644 --- a/Probe/Jobs/Monitor/FetchList.ts +++ b/Probe/Jobs/Monitor/FetchList.ts @@ -61,17 +61,14 @@ export default class FetchListAndProbe { logger.debug(`Running worker ${this.workerName}`); try { - logger.debug(`Probing monitors ${this.workerName}`); await this.fetchListAndProbe(); logger.debug(`Probing monitors ${this.workerName} complete`); - } catch (err) { logger.error(`Error in worker ${this.workerName}`); logger.error(err); - } }