summaryrefslogtreecommitdiff
path: root/src/mongo/s
diff options
context:
space:
mode:
authorYoonsoo Kim <yoonsoo.kim@mongodb.com>2023-05-03 00:39:16 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-03 01:32:23 +0000
commitf0e0b1452ca4395991199ca0d720f97b9f7dbbc8 (patch)
tree8b7197dd6fcb2892d0eda0ec420f14da2b3eb738 /src/mongo/s
parent8037d49bdffb50394fbcb5d6af624d02022eb656 (diff)
downloadmongo-f0e0b1452ca4395991199ca0d720f97b9f7dbbc8.tar.gz
SERVER-73083 Support findAndModify with remove: true on a timeseries collection
Diffstat (limited to 'src/mongo/s')
-rw-r--r--src/mongo/s/commands/cluster_query_without_shard_key_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/commands/cluster_query_without_shard_key_cmd.cpp b/src/mongo/s/commands/cluster_query_without_shard_key_cmd.cpp
index 93e6e0a10c6..196e5769de3 100644
--- a/src/mongo/s/commands/cluster_query_without_shard_key_cmd.cpp
+++ b/src/mongo/s/commands/cluster_query_without_shard_key_cmd.cpp
@@ -162,7 +162,7 @@ BSONObj createAggregateCmdObj(
}
pipeline.emplace_back(BSON(DocumentSourceMatch::kStageName << parsedInfo.query));
if (parsedInfo.sort) {
- // TODO (SERVER-73083): skip the sort option for 'findAndModify' calls on time-series
+ // TODO (SERVER-76530): skip the sort option for 'findAndModify' calls on time-series
// collections.
pipeline.emplace_back(BSON(DocumentSourceSort::kStageName << *parsedInfo.sort));
}