From 064e2b411d2b7806952ef5094dbd2f73553a8a99 Mon Sep 17 00:00:00 2001 From: 107 <107@DESKTOP-UP8U7M2> Date: Thu, 20 Mar 2025 12:15:12 +0700 Subject: [PATCH] =?UTF-8?q?=D1=84=D0=B8=D0=BA=D1=81=20=D0=B2=D1=80=D0=B5?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }