diff options
author | Billy Donahue <billy.donahue@mongodb.com> | 2021-09-20 23:27:51 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-09-21 00:07:27 +0000 |
commit | 6ff19433eb6f8dba381c6736a364b1967ba43541 (patch) | |
tree | 1bd33b8672534daf118441c67280b1bfc217ff93 /src/mongo/transport | |
parent | 5e28775ebde238a628532dc5dd947b55b815310b (diff) | |
download | mongo-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.h | 2 |
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(); }; |