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

separate-data-connections
Vitaliy Filippov 2021-12-25 11:37:44 +03:00
parent 20a4406acc
commit 1bbe62f29c
1 changed files with 1 additions and 1 deletions

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;