Correct task.delay from hours to from days
This commit is contained in:
parent
56d75a3e6c
commit
044cf24660
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue