summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/move_primary_coordinator.h
diff options
context:
space:
mode:
authorAntonio Fuschetto <antonio.fuschetto@mongodb.com>2022-11-18 17:14:58 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-11-18 18:31:45 +0000
commitfd4b7825b5339e6612fef642da3d6c6fb702d681 (patch)
tree87d03bb67e258f11bb7b11ca650d7c00c46adcf6 /src/mongo/db/s/move_primary_coordinator.h
parent450ed089e466ccb74eb6b7eb37dba6cd41956c73 (diff)
downloadmongo-fd4b7825b5339e6612fef642da3d6c6fb702d681.tar.gz
SERVER-71200 Add NoResilient suffix to movePrimary coordinator
Diffstat (limited to 'src/mongo/db/s/move_primary_coordinator.h')
-rw-r--r--src/mongo/db/s/move_primary_coordinator.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/src/mongo/db/s/move_primary_coordinator.h b/src/mongo/db/s/move_primary_coordinator.h
deleted file mode 100644
index 80a1586e0a4..00000000000
--- a/src/mongo/db/s/move_primary_coordinator.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/**
- * Copyright (C) 2021-present MongoDB, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the Server Side Public License, version 1,
- * as published by MongoDB, Inc.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * Server Side Public License for more details.
- *
- * You should have received a copy of the Server Side Public License
- * along with this program. If not, see
- * <http://www.mongodb.com/licensing/server-side-public-license>.
- *
- * As a special exception, the copyright holders give permission to link the
- * code of portions of this program with the OpenSSL library under certain
- * conditions as described in each individual source file and distribute
- * linked combinations including the program with the OpenSSL library. You
- * must comply with the Server Side Public License in all respects for
- * all of the code used other than as permitted herein. If you modify file(s)
- * with this exception, you may extend this exception to your version of the
- * file(s), but you are not obligated to do so. If you do not wish to do so,
- * delete this exception statement from your version. If you delete this
- * exception statement from all source files in the program, then also delete
- * it in the license file.
- */
-
-#pragma once
-
-#include "mongo/db/s/move_primary_coordinator_document_gen.h"
-#include "mongo/db/s/sharding_ddl_coordinator.h"
-#include "mongo/util/future.h"
-
-namespace mongo {
-
-class MovePrimaryCoordinator final
- : public ShardingDDLCoordinatorImpl<MovePrimaryCoordinatorDocument> {
-public:
- MovePrimaryCoordinator(ShardingDDLCoordinatorService* service, const BSONObj& initialState)
- : ShardingDDLCoordinatorImpl(service, "MovePrimaryCoordinator", initialState) {}
-
- ~MovePrimaryCoordinator() = default;
-
- void checkIfOptionsConflict(const BSONObj& coorDoc) const override;
-
- void appendCommandInfo(BSONObjBuilder* cmdInfoBuilder) const override;
-
- bool canAlwaysStartWhenUserWritesAreDisabled() const override {
- return true;
- }
-
-private:
- ExecutorFuture<void> _runImpl(std::shared_ptr<executor::ScopedTaskExecutor> executor,
- const CancellationToken& token) noexcept override;
-};
-
-} // namespace mongo