From bee0377b4d0250d178cd7ef185c67cacc4935059 Mon Sep 17 00:00:00 2001 From: Hui Liu Date: Fri, 18 Nov 2022 15:53:06 -0800 Subject: [PATCH] Init blobGranulesEnabled in ISimulator --- fdbrpc/sim2.actor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fdbrpc/sim2.actor.cpp b/fdbrpc/sim2.actor.cpp index 6cd133d03f..ab4beeb077 100644 --- a/fdbrpc/sim2.actor.cpp +++ b/fdbrpc/sim2.actor.cpp @@ -63,7 +63,8 @@ ISimulator::ISimulator() : desiredCoordinators(1), physicalDatacenters(1), processesPerMachine(0), listenersPerProcess(1), usableRegions(1), allowLogSetKills(true), tssMode(TSSMode::Disabled), configDBType(ConfigDBType::DISABLED), isStopped(false), lastConnectionFailure(0), connectionFailuresDisableDuration(0), speedUpSimulation(false), - backupAgents(BackupAgentType::WaitForType), drAgents(BackupAgentType::WaitForType), allSwapsDisabled(false) {} + backupAgents(BackupAgentType::WaitForType), drAgents(BackupAgentType::WaitForType), allSwapsDisabled(false), + blobGranulesEnabled(false) {} ISimulator::~ISimulator() = default; bool simulator_should_inject_fault(const char* context, const char* file, int line, int error_code) {