diff --git a/src/server.cpp b/src/server.cpp index 98856a50a..874d391c6 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -5188,6 +5188,8 @@ void *workerThreadMain(void *parg) static void validateConfiguration() { + updateMasterAuth(); + if (cserver.cthreads > (int)std::thread::hardware_concurrency()) { serverLog(LL_WARNING, "WARNING: server-threads is greater than this machine's core count. Truncating to %u threads", std::thread::hardware_concurrency()); cserver.cthreads = (int)std::thread::hardware_concurrency();