diff options
author | Haley Connelly <haley.connelly@mongodb.com> | 2020-08-03 16:57:39 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-08-05 18:13:59 +0000 |
commit | 43d3e2d7897745fd6fd351f488830364da218802 (patch) | |
tree | 97b6a30af9c9cf2f54c0c9bc68b669c4651596db /src/mongo/db/s/operation_sharding_state.h | |
parent | c3421443d50acfb81ee299bf5eff6e14879591f3 (diff) | |
download | mongo-43d3e2d7897745fd6fd351f488830364da218802.tar.gz |
SERVER-50057 Do not use StringDataSet in OperationShardingState
Diffstat (limited to 'src/mongo/db/s/operation_sharding_state.h')
-rw-r--r-- | src/mongo/db/s/operation_sharding_state.h | 2 |
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. |