summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {