diff --git a/Program.cs b/Program.cs index 7ea57f5..48f9d81 100644 --- a/Program.cs +++ b/Program.cs @@ -93,7 +93,7 @@ class Program private static async Task MonitorReportStatus(long reportId, CancellationToken token) { // Ждем 1 час перед первой проверкой - await Task.Delay(TimeSpan.FromHours(1), token); + await Task.Delay(15000, token); while (!token.IsCancellationRequested) { @@ -143,7 +143,7 @@ class Program } // Ждем 1 час перед следующей проверкой - await Task.Delay(TimeSpan.FromHours(1), token); + await Task.Delay(15000, token); } }