Update fdbserver/ConfigNode.actor.cpp

Co-authored-by: Trevor Clinkenbeard <trevor.clinkenbeard@snowflake.com>
This commit is contained in:
Lukas Joswiak 2021-09-16 09:24:38 -07:00
parent 83d6c319fb
commit 8e31682737
1 changed files with 1 additions and 1 deletions

View File

@ -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;