Details
-
Bug
-
Status: Resolved
-
Low
-
Resolution: Fixed
-
None
-
Low
Description
DatacenterSyncWriteResponseHandler#assureSufficientLiveNodes() ... ... // Throw exception if any of the DC doesn't have livenodes to accept write. for (String dc: strategy.getDatacenters()) { if (dcEndpoints.get(dc).get() != responses.get(dc).get()) throw new UnavailableException(); }
should be:
if (dcEndpoints.get(dc).get() < responses.get(dc).get())