summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmirsaman Memaripour <amirsaman.memaripour@mongodb.com>2021-11-02 21:01:01 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-11-02 21:39:48 +0000
commit87405e56b1ff812fed4be60ca082d042b1173279 (patch)
tree19b9fd61a65a30a5670b81310a57f89c83174643
parentbbc96fbba2deaac539165bcd86bbdaf6037f41dd (diff)
downloadmongo-87405e56b1ff812fed4be60ca082d042b1173279.tar.gz
SERVER-61199 Update TODOs listed in SERVER-47229
-rw-r--r--src/mongo/transport/session_asio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/transport/session_asio.cpp b/src/mongo/transport/session_asio.cpp
index 80f9e87aac9..64421073763 100644
--- a/src/mongo/transport/session_asio.cpp
+++ b/src/mongo/transport/session_asio.cpp
@@ -422,7 +422,7 @@ Future<Message> TransportLayerASIO::ASIOSession::sourceMessageImpl(const BatonHa
template <typename MutableBufferSequence>
Future<void> TransportLayerASIO::ASIOSession::read(const MutableBufferSequence& buffers,
const BatonHandle& baton) {
- // TODO SERVER-47229 Guard active ops for cancellation here.
+ // TODO SERVER-61192 Guard active ops for cancellation here.
#ifdef MONGO_CONFIG_SSL
if (_sslSocket) {
return opportunisticRead(*_sslSocket, buffers, baton);
@@ -449,7 +449,7 @@ Future<void> TransportLayerASIO::ASIOSession::read(const MutableBufferSequence&
template <typename ConstBufferSequence>
Future<void> TransportLayerASIO::ASIOSession::write(const ConstBufferSequence& buffers,
const BatonHandle& baton) {
- // TODO SERVER-47229 Guard active ops for cancellation here.
+ // TODO SERVER-61192 Guard active ops for cancellation here.
#ifdef MONGO_CONFIG_SSL
_ranHandshake = true;
if (_sslSocket) {