From 1bbe62f29cd00bc05e9740f8af6fe1e20805ac70 Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sat, 25 Dec 2021 11:37:44 +0300 Subject: [PATCH] Fix uninitialized listen_backlog which was leading to REALLY SLOW send speeds!!! --- src/osd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osd.h b/src/osd.h index 290edc16..2e98b497 100644 --- a/src/osd.h +++ b/src/osd.h @@ -102,7 +102,7 @@ class osd_t bool no_rebalance = false; bool no_recovery = false; std::string bind_address; - int bind_port, listen_backlog; + int bind_port, listen_backlog = 128; // FIXME: Implement client queue depth limit int client_queue_depth = 128; bool allow_test_ops = false;