diff options
author | Siyuan Zhou <siyuan.zhou@mongodb.com> | 2018-08-16 18:58:49 -0400 |
---|---|---|
committer | Siyuan Zhou <siyuan.zhou@mongodb.com> | 2018-08-16 18:58:49 -0400 |
commit | 5e461534b339c957d2e6dcf16015949a496a1110 (patch) | |
tree | c688bcfa73c9b4eacbb42fa778df3ccf7e65c02c /src/mongo/s | |
parent | 57be1f7097ceed41b156a826c541aa276f35dd61 (diff) | |
download | mongo-5e461534b339c957d2e6dcf16015949a496a1110.tar.gz |
Revert "SERVER-34986 Allow connections to override maxConns based on CIDR range"
This reverts commit 1a643ba65b070c167cdfdd5056c7d2ac79dd5371.
Diffstat (limited to 'src/mongo/s')
-rw-r--r-- | src/mongo/s/server.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mongo/s/server.cpp b/src/mongo/s/server.cpp index 0ac5e2c17e1..0dc64211d36 100644 --- a/src/mongo/s/server.cpp +++ b/src/mongo/s/server.cpp @@ -446,12 +446,6 @@ ExitCode runMongosServer(ServiceContext* serviceContext) { return EXIT_NET_ERROR; } - status = serviceContext->getServiceEntryPoint()->start(); - if (!status.isOK()) { - error() << "Failed to start the service entry point: " << redact(status); - return EXIT_NET_ERROR; - } - status = serviceContext->getTransportLayer()->start(); if (!status.isOK()) { error() << "Failed to start the transport layer: " << redact(status); |