summaryrefslogtreecommitdiff
path: root/src/mongo/transport/service_entry_point_impl.h
diff options
context:
space:
mode:
authorReo Kimura <reo.kimura@mongodb.com>2020-07-22 03:03:43 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-11-17 01:16:21 +0000
commitab0703b3c6ad1607fa224c5be2b893ddbdad365e (patch)
tree7368863c9e82869c5e91096de3017a10c26294c8 /src/mongo/transport/service_entry_point_impl.h
parent96ced1dddcb87b0bc7bafc40094d9014c04edd98 (diff)
downloadmongo-ab0703b3c6ad1607fa224c5be2b893ddbdad365e.tar.gz
SERVER-49072 Make ServiceExecutors into Decorations
Diffstat (limited to 'src/mongo/transport/service_entry_point_impl.h')
-rw-r--r--src/mongo/transport/service_entry_point_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/transport/service_entry_point_impl.h b/src/mongo/transport/service_entry_point_impl.h
index 38c1319657a..0528a19fbdb 100644
--- a/src/mongo/transport/service_entry_point_impl.h
+++ b/src/mongo/transport/service_entry_point_impl.h
@@ -36,7 +36,9 @@
#include "mongo/stdx/condition_variable.h"
#include "mongo/stdx/variant.h"
#include "mongo/transport/service_entry_point.h"
+#include "mongo/transport/service_executor_fixed.h"
#include "mongo/transport/service_executor_reserved.h"
+#include "mongo/transport/service_executor_synchronous.h"
#include "mongo/transport/service_state_machine.h"
#include "mongo/util/hierarchical_acquisition.h"
#include "mongo/util/net/cidr.h"
@@ -90,8 +92,6 @@ private:
size_t _maxNumConnections{DEFAULT_MAX_CONN};
AtomicWord<size_t> _currentConnections{0};
AtomicWord<size_t> _createdConnections{0};
-
- std::unique_ptr<transport::ServiceExecutorReserved> _adminInternalPool;
};
/*