From 2b497fa50db48b68d0dc2505b443bbd96eec66d2 Mon Sep 17 00:00:00 2001 From: ModerRAS Date: Sun, 26 Jul 2026 15:06:45 +0800 Subject: [PATCH] Stabilize Garnet Lua integration timeout --- .../AppBootstrap/GarnetLuaScriptIntegrationTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TelegramSearchBot.Test/AppBootstrap/GarnetLuaScriptIntegrationTests.cs b/TelegramSearchBot.Test/AppBootstrap/GarnetLuaScriptIntegrationTests.cs index 6ce2c710..d7541400 100644 --- a/TelegramSearchBot.Test/AppBootstrap/GarnetLuaScriptIntegrationTests.cs +++ b/TelegramSearchBot.Test/AppBootstrap/GarnetLuaScriptIntegrationTests.cs @@ -127,8 +127,8 @@ private static async Task ConnectWithRetryAsync(int port) AbortOnConnectFail = false, ConnectRetry = 1, ConnectTimeout = 500, - SyncTimeout = 2_000, - AsyncTimeout = 2_000 + SyncTimeout = 15_000, + AsyncTimeout = 15_000 }; options.EndPoints.Add(IPAddress.Loopback, port);