Fix uninitialized listen_backlog which was leading to REALLY SLOW send speeds!!!

This commit is contained in:
Vitaliy Filippov
2021-12-25 11:38:13 +03:00
parent 20a4406acc
commit 1bbe62f29c
+1 -1
View File
@@ -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;