locator: topology: is_configured_this_node: delete spurious semicolumn

Signed-off-by: Benny Halevy <bhalevy@scylladb.com>
This commit is contained in:
Benny Halevy
2023-09-06 12:05:49 +03:00
parent 115462be17
commit 574c7e349a

View File

@@ -145,7 +145,7 @@ bool topology::is_configured_this_node(const node& n) const {
return _cfg.this_host_id == n.host_id();
}
if (_cfg.this_endpoint != inet_address()) { // Selection by endpoint
return _cfg.this_endpoint == n.endpoint();;
return _cfg.this_endpoint == n.endpoint();
}
return false; // No selection;
}