summaryrefslogtreecommitdiff
path: root/src/mongo/transport
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2021-09-20 23:27:51 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-09-21 00:07:27 +0000
commit6ff19433eb6f8dba381c6736a364b1967ba43541 (patch)
tree1bd33b8672534daf118441c67280b1bfc217ff93 /src/mongo/transport
parent5e28775ebde238a628532dc5dd947b55b815310b (diff)
downloadmongo-6ff19433eb6f8dba381c6736a364b1967ba43541.tar.gz
SERVER-60022 global std::optional -> boost::optional
Diffstat (limited to 'src/mongo/transport')
-rw-r--r--src/mongo/transport/ssl_connection_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/transport/ssl_connection_context.h b/src/mongo/transport/ssl_connection_context.h
index 0ab7c23091d..3859bb39c54 100644
--- a/src/mongo/transport/ssl_connection_context.h
+++ b/src/mongo/transport/ssl_connection_context.h
@@ -55,7 +55,7 @@ struct SSLConnectionContext {
std::shared_ptr<SSLManagerInterface> manager;
// If this Context was created from transient SSL params this contains the URI of the target
// cluster. It can also be used to determine if the context is indeed transient.
- std::optional<std::string> targetClusterURI;
+ boost::optional<std::string> targetClusterURI;
~SSLConnectionContext();
};