diff --git a/fdbserver/tester.actor.cpp b/fdbserver/tester.actor.cpp index f710cfa93c..64b9924560 100644 --- a/fdbserver/tester.actor.cpp +++ b/fdbserver/tester.actor.cpp @@ -758,8 +758,8 @@ ACTOR Future clearData(Database cx) { // If the result is non-empty, it is possible that there is some bad interaction between the test // and the optional simulated default tenant: // - // 1. If the test is creating/deleting tenants itself, then it should disable the default tenant. - // 2. If the test is opening Database objects itself, then it needs to propagate the default tenant + // 1. If the test is creating/deleting tenants itself, then it should disable the default tenant. + // 2. If the test is opening Database objects itself, then it needs to propagate the default tenant // value from the existing Database. // 3. If the test is using raw access or system key access and writing to the normal key-space, then // it should disable the default tenant. diff --git a/fdbserver/workloads/WriteDuringRead.actor.cpp b/fdbserver/workloads/WriteDuringRead.actor.cpp index 39a6f1b1f6..b2f627284e 100644 --- a/fdbserver/workloads/WriteDuringRead.actor.cpp +++ b/fdbserver/workloads/WriteDuringRead.actor.cpp @@ -114,7 +114,7 @@ struct WriteDuringReadWorkload : TestWorkload { std::string description() const override { return "WriteDuringRead"; } - ACTOR Future setupImpl(WriteDuringReadWorkload *self, Database cx) { + ACTOR Future setupImpl(WriteDuringReadWorkload* self, Database cx) { // If we are operating in the default tenant but enable raw access, we should only write keys // in the tenant's key-space. if (self->useSystemKeys && cx->defaultTenant.present() && self->keyPrefix < systemKeys.begin) { @@ -124,9 +124,7 @@ struct WriteDuringReadWorkload : TestWorkload { return Void(); } - Future setup(Database const& cx) override { - return setupImpl(this, cx); - } + Future setup(Database const& cx) override { return setupImpl(this, cx); } Future start(Database const& cx) override { if (clientId == 0)