Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Current package versions:

## Unreleased

- (none)
- Fix [#2951](https://github.com/StackExchange/StackExchange.Redis/issues/2951) - sentinel reconnection failure ([#2956 by mgravell](https://github.com/StackExchange/StackExchange.Redis/pull/2956))

## 2.9.17

Expand Down
1 change: 1 addition & 0 deletions src/StackExchange.Redis/ConnectionMultiplexer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1649,6 +1649,7 @@ internal async Task<bool> ReconfigureAsync(bool first, bool reconfigureAll, ILog
if (primary == preferred || primary.IsReplica)
{
log?.LogInformationClearingAsRedundantPrimary(new(primary));
primary.ClearUnselectable(UnselectableFlags.RedundantPrimary);
}
else
{
Expand Down
Loading