summaryrefslogtreecommitdiff
path: root/src/mongo/client/mongo_uri_connect.cpp
diff options
context:
space:
mode:
authorsamantharitter <samantha.ritter@10gen.com>2016-09-13 17:19:22 -0400
committersamantharitter <samantha.ritter@10gen.com>2016-09-13 17:19:22 -0400
commit15a614f37f91736e01580893d47c39cc7df9aa1c (patch)
treee7d8f714a7d30137383269bb4f079434feae0918 /src/mongo/client/mongo_uri_connect.cpp
parentd222cf41518a58abc631fa6a046aadf9055bf93e (diff)
downloadmongo-15a614f37f91736e01580893d47c39cc7df9aa1c.tar.gz
Revert "SERVER-25151 Honor 'ssl' option in URIs passed to the shell"
This reverts commit 7c3878adaf73736c33c7f65b718d8b5705c36142.
Diffstat (limited to 'src/mongo/client/mongo_uri_connect.cpp')
-rw-r--r--src/mongo/client/mongo_uri_connect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/client/mongo_uri_connect.cpp b/src/mongo/client/mongo_uri_connect.cpp
index 140af0fff1d..7909e0bd5cd 100644
--- a/src/mongo/client/mongo_uri_connect.cpp
+++ b/src/mongo/client/mongo_uri_connect.cpp
@@ -177,7 +177,7 @@ DBClientBase* MongoURI::connect(StringData applicationName, std::string& errmsg)
}
}
- auto ret = _connectString.connect(applicationName, errmsg, socketTimeout, this);
+ auto ret = _connectString.connect(applicationName, errmsg, socketTimeout);
if (!ret) {
return ret;
}