From 044cf24660795907ab519f5de2377d11ad130d9e Mon Sep 17 00:00:00 2001 From: atef Date: Mon, 18 Dec 2023 08:23:03 +0100 Subject: [PATCH] Correct task.delay from hours to from days --- csharp/App/SaliMax/src/AggregationService/Aggregator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/App/SaliMax/src/AggregationService/Aggregator.cs b/csharp/App/SaliMax/src/AggregationService/Aggregator.cs index 6bb6c4a0c..e3026b264 100644 --- a/csharp/App/SaliMax/src/AggregationService/Aggregator.cs +++ b/csharp/App/SaliMax/src/AggregationService/Aggregator.cs @@ -70,7 +70,7 @@ public static class Aggregator { Console.WriteLine("An error has occured when calculating daily aggregated data, exception is:\n" + e); } - await Task.Delay(TimeSpan.FromHours(1)); + await Task.Delay(TimeSpan.FromDays(1)); } }