From f947f789f373ee807a5bf5af0b17050df34ecb22 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Sun, 18 Aug 2013 21:15:30 -0700 Subject: [PATCH] Fix prev commit Hardcoded number of queues was leftover from preliminary work. Use connection_pool_queues. --- servers/slapd/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/slapd/init.c b/servers/slapd/init.c index 26dacd7bd3..79271d081b 100644 --- a/servers/slapd/init.c +++ b/servers/slapd/init.c @@ -137,7 +137,7 @@ slap_init( int mode, const char *name ) slap_name = name; ldap_pvt_thread_pool_init_q( &connection_pool, - connection_pool_max, 0, 4); + connection_pool_max, 0, connection_pool_queues); slap_counters_init( &slap_counters ); -- 2.39.5