summaryrefslogtreecommitdiff
path: root/src/mongo/client/connection_string.cpp
AgeCommit message (Collapse)Author
2023-10-07SERVER-77158 apply performance-move-const-arg clang tidy rule for clientMatt Boros
2023-09-23SERVER-81059 bulk-revert of include of boost iif.hppBilly Donahue
2023-06-22SERVER-77044 IWYU Automated changes for up to end ratio 0.4Daniel Moody
2023-06-15SERVER-77042 automated IWYU changes up to ratio of 0.3Daniel Moody
2020-10-26SERVER-50508 Rename ConnectionType::MASTER to ConnectionType::kStandaloneBen Caimano
2020-09-25SERVER-51103 Allow ShardRegistry to distinguish between complete/partial ↵Kevin Pulo
connection string updates
2020-05-14SERVER-47921 Clean up LOG lines in clientSara Golemon
2020-04-26SERVER-47735 change mongo source over to logv2Billy Donahue
- Remove several legacy logger/ files - Convert all MONGO_LOG_DEFAULT_COMPONENT to the LOGV2 version. - Globally replace logger::{LogSeverity,LogComponent} => logv2::
2019-04-09SERVER-40476 remove mongoutils::strBilly Donahue
Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
2019-02-13SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue
Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
2018-10-22SERVER-37651 Update header files with new licenseRamon Fernandez
2018-06-13SERVER-35486 Create _addShard command on shard to drive shard initializationMatthew Saltz
2017-10-31SERVER-31061 Add `mongo+srv://` support for URIs.ADAM David Alan Martin
The shell now supports parsing and handling `mongo+srv://` style URIs, as part of the DNS Seedlist support. These URIs require DNS SRV and TXT record lookups, for extra configuration options. The shell also supports a (limited) form of connection-failover -- when initially connecting to a non-replica-set cluster, the shell will try each host listed, in order, until a connection can be established.
2016-06-13SERVER-24467 Make MoveChunkRequest and dependencies comparableKaloian Manassiev
This change implements the '==' operator on MoveChunkRequest and any dependent classes which do not have it.
2016-05-24SERVER-24264 SERVER-23973 Replace calls to verify() in ConnectionString with ↵Spencer T Brody
uassert
2016-05-05SERVER-23857 dispatch shard creation by ConnectionString typeMisha Tyulenev
2016-03-10SERVER-22320 remove SYNC option and SyncClusterConnectionMisha Tyulenev
2015-10-13SERVER-6233 Add URI parsing to mongo shellJonathan Reams
2015-07-16SERVER-18567 Remove legacy ConnectionString::parseKaloian Manassiev
Removes the legacy ConnectionString::parse method and make all places use the variant, which returns StatusWith<ConnectionString>.
2015-06-20SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto
2015-06-11SERVER-18464 Implement ReplicaSetMonitorManager to replace staticsKaloian Manassiev
The ReplicaSetMonitorManager will be responsible for the lifetime of replica set monitors and will replaces the global static variables, which we currently use to track the replica set monitors. This change brings us closer to having a separate instance of the replica set monitors for MongoS.
2015-05-21SERVER-18567 Implement ConnectionString::parse which returns StatusWithKaloian Manassiev
2015-05-20SERVER-18568 Remove ConnectionString::PAIRKaloian Manassiev
It is not used anywhere.
2015-04-16SERVER-18070 Split ConnectionString out into its own librarySpencer T Brody