Correct task.delay from hours to from days

This commit is contained in:
atef 2023-12-18 08:23:03 +01:00
parent 56d75a3e6c
commit 044cf24660
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}
}