Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ public async Task SubscribeAsync(string channel, string group, int? port, bool p
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}");
Expand Down
Loading