summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/flow_control.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/flow_control.cpp')
-rw-r--r--src/mongo/db/storage/flow_control.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/flow_control.cpp b/src/mongo/db/storage/flow_control.cpp
index e4ba6ad4b03..3f1d2e0fec3 100644
--- a/src/mongo/db/storage/flow_control.cpp
+++ b/src/mongo/db/storage/flow_control.cpp
@@ -132,7 +132,7 @@ FlowControl::FlowControl(ServiceContext* service, repl::ReplicationCoordinator*
_lastTimeSustainerAdvanced(Date_t::now()) {
// Initialize _lastTargetTicketsPermitted to maximum tickets to make sure flow control doesn't
// cause a slow start on start up.
- FlowControlTicketholder::set(service, stdx::make_unique<FlowControlTicketholder>(_kMaxTickets));
+ FlowControlTicketholder::set(service, std::make_unique<FlowControlTicketholder>(_kMaxTickets));
service->getPeriodicRunner()->scheduleJob(
{"FlowControlRefresher",