fixed warning (#7519)

This commit is contained in:
Svyatoslav Nikolsky 2018-01-10 21:56:02 +03:00 committed by Robert Habermeier
parent e95b093483
commit 73f5cc57be
1 changed files with 1 additions and 1 deletions

View File

@ -688,7 +688,7 @@ impl ClusterConnections {
pub fn remove(&self, data: Arc<ClusterData>, node: &NodeId, is_inbound: bool) {
{
let mut data = &mut *self.data.write();
let mut data = self.data.write();
if let Entry::Occupied(entry) = data.connections.entry(node.clone()) {
if entry.get().is_inbound() != is_inbound {
return;