summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
diff options
context:
space:
mode:
authorJiawei Yang <jiawei.yang@mongodb.com>2023-03-29 18:42:16 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-03-30 18:51:41 +0000
commitb5f1d6bb8c06742cde53f028fd266eff584a2537 (patch)
treeed87f3936e635da175b860359aba30ff15424487 /src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
parent4714df5896ddaa06f3146531d2283a013f903996 (diff)
downloadmongo-b5f1d6bb8c06742cde53f028fd266eff584a2537.tar.gz
Revert "SERVER-70127 change system operation threads to be killable by default"
This reverts commit 9f2867c9da77e2d64df3852f7d4578f10e6f0817. Revert "SERVER-75352 OplogBatcher's ReplBatcher thread should be unkillable" This reverts commit 26266d5b736f90961a328399dea5d299cd407ab2.
Diffstat (limited to 'src/mongo/db/repl/replication_coordinator_external_state_impl.cpp')
-rw-r--r--src/mongo/db/repl/replication_coordinator_external_state_impl.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp b/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
index 7342f419fb7..fabe5d1f02e 100644
--- a/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
+++ b/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
@@ -147,12 +147,6 @@ auto makeThreadPool(const std::string& poolName, const std::string& threadName)
threadPoolOptions.poolName = poolName;
threadPoolOptions.onCreateThread = [](const std::string& threadName) {
Client::initThread(threadName.c_str());
-
- {
- stdx::lock_guard<Client> lk(cc());
- cc().setSystemOperationUnKillableByStepdown(lk);
- }
-
AuthorizationSession::get(cc())->grantInternalAuthorization(&cc());
};
return std::make_unique<ThreadPool>(threadPoolOptions);