Merge pull request #6939 from dimarub2000/perfomance_test_all_of

all_of setting in performance-test now works properly
This commit is contained in:
alesapin 2019-09-16 13:04:23 +03:00 committed by GitHub
commit 719854b49b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,9 +31,10 @@ void StopConditionsSet::loadFromConfig(const ConfigurationPtr & stop_conditions_
else if (key == "average_speed_not_changing_for_ms")
average_speed_not_changing_for_ms.value = stop_conditions_view->getUInt64(key);
else
throw Exception("Met unkown stop condition: " + key, ErrorCodes::LOGICAL_ERROR);
throw Exception("Met unknown stop condition: " + key, ErrorCodes::LOGICAL_ERROR);
++initialized_count;
}
++initialized_count;
}
void StopConditionsSet::reset()