Skip to content

Commit

Permalink
Remove CRON for electrical heating
Browse files Browse the repository at this point in the history
  • Loading branch information
dstenroejl committed Dec 20, 2024
1 parent 190e6f6 commit c00f32e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions source/ProcessManager.Orchestrations/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,10 @@ OrchestrationDescription CreateDescription_Brs_021_ElectricalHeatingCalculation_
canBeScheduled: true,
functionName: nameof(Orchestration_Brs_021_ElectricalHeatingCalculation_V1));

// Runs at 12:00 and 17:00 every day
description.RecurringCronExpression = "0 12,17 * * *";
// DISABLED for now because ElectricalHeatingJob is currently failing
description.RecurringCronExpression = string.Empty;
////// Runs at 12:00 and 17:00 every day
////description.RecurringCronExpression = "0 12,17 * * *";

foreach (var step in Orchestration_Brs_021_ElectricalHeatingCalculation_V1.Steps)
{
Expand Down

0 comments on commit c00f32e

Please sign in to comment.