Fix compile error

This commit is contained in:
sfc-gh-tclinkenbeard 2021-01-13 17:43:10 -08:00
parent 8ff14878fe
commit 750d5e5af2
1 changed files with 1 additions and 1 deletions

View File

@ -1599,7 +1599,7 @@ int main(int argc, char* argv[]) {
// Reinitialize knobs in order to update knobs that are dependent on explicitly set knobs
globalFlowKnobs->initialize(true, role == ServerRole::Simulation);
globalClientKnobs->initialize(true);
globalServerKnobs->initialize(true, globalClientKnobs, role == ServerRole::Simulation);
globalServerKnobs->initialize(true, globalClientKnobs.get(), role == ServerRole::Simulation);
// evictionPolicyStringToEnum will throw an exception if the string is not recognized as a valid
EvictablePageCache::evictionPolicyStringToEnum(FLOW_KNOBS->CACHE_EVICTION_POLICY);