summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp')
-rw-r--r--src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp b/src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp
index 6d356487893..dd7cb413540 100644
--- a/src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp
+++ b/src/mongo/db/repl/replication_coordinator_impl_heartbeat.cpp
@@ -716,6 +716,11 @@ void ReplicationCoordinatorImpl::_heartbeatReconfigStore(
}
const auto configToApply = statusWithConf.getValue();
+ if (isSplitRecipientConfig) {
+ LOGV2(6309200,
+ "Applying a recipient split config for a shard split operation.",
+ "config"_attr = configToApply);
+ }
const StatusWith<int> myIndex = validateConfigForHeartbeatReconfig(
_externalState.get(), configToApply, getGlobalServiceContext());