fix wrong version in logging message

This commit is contained in:
Mike McCandless 2017-04-27 06:59:24 -04:00
parent 61d02a47e2
commit f9c2b8be3b
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ public abstract class ReplicaNode extends Node {
if (version < curVersion) {
// This can happen, if two syncs happen close together, and due to thread scheduling, the incoming older version runs after the newer version
message("top: new NRT point (version=" + version + ") is older than current (version=" + version + "); skipping");
message("top: new NRT point (version=" + version + ") is older than current (version=" + curVersion + "); skipping");
return null;
}