From 039b8446ddc90259e262483d2e7ef5983cc989f5 Mon Sep 17 00:00:00 2001 From: ngfrolov Date: Mon, 16 Oct 2023 10:11:24 +0500 Subject: [PATCH] =?UTF-8?q?TelemetryDataCache.InitializeCacheFromDBA?= =?UTF-8?q?sync()=20=D1=83=D0=B2=D0=B5=D0=BB=D0=B8=D1=87=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=82=D0=B0=D0=B9=D0=BC=D0=B0=D1=83=D1=82=20=D1=87=D1=82=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D0=B8=D0=B7=20=D0=91=D0=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AsbCloudInfrastructure/Services/SAUB/TelemetryDataCache.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AsbCloudInfrastructure/Services/SAUB/TelemetryDataCache.cs b/AsbCloudInfrastructure/Services/SAUB/TelemetryDataCache.cs index 9bb2dc79..afb6163e 100644 --- a/AsbCloudInfrastructure/Services/SAUB/TelemetryDataCache.cs +++ b/AsbCloudInfrastructure/Services/SAUB/TelemetryDataCache.cs @@ -159,7 +159,7 @@ namespace AsbCloudInfrastructure.Services.SAUB isLoading = true; var defaultTimeout = db.Database.GetCommandTimeout(); - db.Database.SetCommandTimeout(TimeSpan.FromSeconds(90)); + db.Database.SetCommandTimeout(TimeSpan.FromMinutes(5)); Well[] wells = await db.Set() .Include(well => well.Telemetry)