Log multiplexer reconfiguration by st-dev-gh · Pull Request #2864 · StackExchange/StackExchange.Redis
Expand Up
@@ -1378,7 +1378,7 @@ internal bool ReconfigureIfNeeded(EndPoint? blame, bool fromBroadcast, string ca
{
bool reconfigureAll = fromBroadcast || publishReconfigure;
Trace("Configuration change detected; checking nodes", "Configuration");
ReconfigureAsync(first: false, reconfigureAll, null, blame, cause, publishReconfigure, flags).ObserveErrors();
ReconfigureAsync(first: false, reconfigureAll, Logger, blame, cause, publishReconfigure, flags).ObserveErrors();
return true;
}
else
Expand All
@@ -1393,7 +1393,7 @@ internal bool ReconfigureIfNeeded(EndPoint? blame, bool fromBroadcast, string ca
/// This re-assessment of all server endpoints to get the current topology and adjust, the same as if we had first connected.
/// </summary>
public Task<bool> ReconfigureAsync(string reason) =>
ReconfigureAsync(first: false, reconfigureAll: false, log: null, blame: null, cause: reason);
ReconfigureAsync(first: false, reconfigureAll: false, log: Logger, blame: null, cause: reason);
internal async Task<bool> ReconfigureAsync(bool first, bool reconfigureAll, ILogger? log, EndPoint? blame, string cause, bool publishReconfigure = false, CommandFlags publishReconfigureFlags = CommandFlags.None) { Expand Down
internal async Task<bool> ReconfigureAsync(bool first, bool reconfigureAll, ILogger? log, EndPoint? blame, string cause, bool publishReconfigure = false, CommandFlags publishReconfigureFlags = CommandFlags.None) { Expand Down