Update fdbserver/ConfigNode.actor.cpp
Co-authored-by: Trevor Clinkenbeard <trevor.clinkenbeard@snowflake.com>
This commit is contained in:
parent
83d6c319fb
commit
8e31682737
|
@ -327,7 +327,7 @@ class ConfigNodeImpl {
|
|||
continue;
|
||||
}
|
||||
// Mutations should be in ascending version order.
|
||||
ASSERT(mutation.version >= latestVersion);
|
||||
ASSERT_GE(mutation.version, latestVersion);
|
||||
if (mutation.version > latestVersion) {
|
||||
latestVersion = mutation.version;
|
||||
index = 0;
|
||||
|
|
Loading…
Reference in New Issue