concurrent_read_reqeusts typo fix. (#335)

This commit is contained in:
Savinda Senevirathne
2021-07-22 19:40:29 +05:30
committed by GitHub
parent cdf3a73c7d
commit 866a617989
6 changed files with 9 additions and 9 deletions

View File

@@ -90,7 +90,7 @@ namespace read_req
}
}
if (read_req_queue.size_approx() != 0 && read_req_threads.size() <= conf::cfg.user.concurrent_read_reqeuests)
if (read_req_queue.size_approx() != 0 && read_req_threads.size() <= conf::cfg.user.concurrent_read_requests)
{
read_req_threads.push_back(std::thread(read_request_processor));
if (read_req_queue.size_approx() == 1)