summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaley Connelly <haley.connelly@mongodb.com>2020-08-03 16:57:39 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-08-05 18:13:59 +0000
commit43d3e2d7897745fd6fd351f488830364da218802 (patch)
tree97b6a30af9c9cf2f54c0c9bc68b669c4651596db
parentc3421443d50acfb81ee299bf5eff6e14879591f3 (diff)
downloadmongo-43d3e2d7897745fd6fd351f488830364da218802.tar.gz
SERVER-50057 Do not use StringDataSet in OperationShardingState
-rw-r--r--src/mongo/db/s/operation_sharding_state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/s/operation_sharding_state.h b/src/mongo/db/s/operation_sharding_state.h
index 558202e6d4a..3a645419a79 100644
--- a/src/mongo/db/s/operation_sharding_state.h
+++ b/src/mongo/db/s/operation_sharding_state.h
@@ -191,7 +191,7 @@ private:
StringMap<DatabaseVersion> _databaseVersions;
// Stores shards that have undergone a version check.
- StringDataSet _shardVersionsChecked;
+ StringSet _shardVersionsChecked;
// This value will only be non-null if version check during the operation execution failed due
// to stale version and there was a migration for that namespace, which was in critical section.