Skip to content

Commit 3d13620

Browse files
committed
refactor: Update chart colors in LineChart and BrandColors files
1 parent 1c069c6 commit 3d13620

File tree

10 files changed

+1090
-967
lines changed

10 files changed

+1090
-967
lines changed

App/FeatureSet/Workers/Jobs/IncomingRequestMonitor/CheckHeartbeat.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ RunCron(
5656

5757
for (const monitor of incomingRequestMonitors) {
5858
try {
59-
if (!monitor.monitorSteps) {
60-
logger.debug("Monitor has no steps. Skipping...");
61-
continue;
62-
}
6359

6460
await MonitorService.updateOneById({
6561
id: monitor.id!,
@@ -72,6 +68,11 @@ RunCron(
7268
},
7369
});
7470

71+
if (!monitor.monitorSteps) {
72+
logger.debug("Monitor has no steps. Skipping...");
73+
continue;
74+
}
75+
7576
const processRequest: boolean = shouldProcessRequest(monitor);
7677

7778
logger.debug(

0 commit comments

Comments
 (0)