Fixed UV_THREADPOOL_SIZE setting

putenv can't use stack buffer
This commit is contained in:
SChernykh
2023-05-23 19:14:15 +02:00
parent eab8a51bb7
commit cd57ab6ad9

View File

@@ -174,7 +174,7 @@ private:
const uint32_t N = std::min(std::max(std::thread::hardware_concurrency(), 4U), 8U);
char buf[40] = {};
static char buf[40] = {};
log::Stream s(buf);
s << "UV_THREADPOOL_SIZE=" << N << '\0';