From: Howard Chu Date: Mon, 19 Aug 2013 04:15:30 +0000 (-0700) Subject: Fix prev commit X-Git-Tag: OPENLDAP_REL_ENG_2_5_0ALPHA~605 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f947f789f373ee807a5bf5af0b17050df34ecb22;p=thirdparty%2Fopenldap.git Fix prev commit Hardcoded number of queues was leftover from preliminary work. Use connection_pool_queues. --- 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 );