0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-02-18 09:40:12 +01:00

ircd::db: No need to start pools with more than 0 ctxs.

This commit is contained in:
Jason Volk 2018-08-17 12:45:53 -07:00
parent fe69a41255
commit 5326f434d9

View file

@ -31,9 +31,9 @@ struct ircd::db::database::env::state
std::array<ctx::pool, POOLS> pool
{{
// name of pool stack size initial workers
{ "bottom", 128_KiB, 1 },
{ "low", 128_KiB, 1 },
{ "high", 128_KiB, 1 },
{ "bottom", 128_KiB, 0 },
{ "low", 128_KiB, 0 },
{ "high", 128_KiB, 0 },
}};
state(database *const &d)