From b8636a7c40cb2f92e1f63a8de0a2cd0095236537 Mon Sep 17 00:00:00 2001 From: "aden.chen" Date: Wed, 15 Oct 2025 14:25:44 +0800 Subject: [PATCH] Revert "Handling redis timeout in RedisSubscriber" This reverts commit 1184528d70fcf5968665d7809d43d2caf636ae1f. --- .../BotSharp.Core/Infrastructures/Events/RedisSubscriber.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Infrastructure/BotSharp.Core/Infrastructures/Events/RedisSubscriber.cs b/src/Infrastructure/BotSharp.Core/Infrastructures/Events/RedisSubscriber.cs index a09224d8..61db1d33 100644 --- a/src/Infrastructure/BotSharp.Core/Infrastructures/Events/RedisSubscriber.cs +++ b/src/Infrastructure/BotSharp.Core/Infrastructures/Events/RedisSubscriber.cs @@ -81,10 +81,6 @@ public class RedisSubscriber : IEventSubscriber await HandleGroupMessage(db, channel, group, consumer, received, $"{channel}-Error"); } } - catch (RedisTimeoutException) - { - _logger.LogWarning($"Redis timeout for channel {channel}, will retry in next cycle"); - } catch (Exception ex) { _logger.LogError($"Error processing message: {ex.Message}\r\n{ex}");