Revert call to rawConfiguration.clear()

This commit is contained in:
sfc-gh-tclinkenbeard 2021-05-25 21:41:02 -07:00
parent 56ddde4d58
commit eb618d5309
1 changed files with 1 additions and 1 deletions

View File

@ -527,7 +527,7 @@ void DatabaseConfiguration::makeConfigurationMutable() {
auto& mc = mutableConfiguration.get();
for(auto r = rawConfiguration.begin(); r != rawConfiguration.end(); ++r)
mc[ r->key.toString() ] = r->value.toString();
rawConfiguration.clear();
rawConfiguration = Standalone<VectorRef<KeyValueRef>>();
}
void DatabaseConfiguration::makeConfigurationImmutable() {