Skip to content

Commit

Permalink
Fix bad merge (#6656)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpetit authored and sergeybykov committed Jul 21, 2020
1 parent 6f83c91 commit 8b597c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Orleans.Core/Messaging/GatewayManager.cs
Expand Up @@ -353,7 +353,7 @@ private void UpdateLiveGatewaysSnapshot(IEnumerable<SiloAddress> refreshedGatewa
// receive responses
var connectionsToKeepAlive = new List<SiloAddress>(live);
connectionsToKeepAlive.AddRange(knownMasked.Select(e => e.Key));
this.CloseEvictedGatewayConnections(live);
this.CloseEvictedGatewayConnections(connectionsToKeepAlive);
}
}

Expand Down

0 comments on commit 8b597c2

Please sign in to comment.