Skip to content

Commit 0980f70

Browse files
committed
fix: cron
1 parent 9325320 commit 0980f70

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

services/workflows-service/src/workflow/cron/ongoing-monitoring.cron.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class OngoingMonitoringCron {
7373
const isOngoingEnabledForBusiness =
7474
business.metadata?.featureConfig?.[this.processFeatureName]?.enabled;
7575

76-
if (!isOngoingEnabledForBusiness) {
76+
if (isOngoingEnabledForBusiness === false) {
7777
this.logger.log(
7878
`Ongoing monitoring is not enabled for business ${business.companyName} (id: ${business.id})`,
7979
);

0 commit comments

Comments
 (0)