From: Nick Porter Date: Fri, 25 Aug 2023 17:15:50 +0000 (+0100) Subject: Set bind_pool start = 0 to reduce noise in LDAP test logs X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e30f23509945cbec83b41f61c4735968385ae82;p=thirdparty%2Ffreeradius-server.git Set bind_pool start = 0 to reduce noise in LDAP test logs --- diff --git a/src/tests/modules/ldap/module.conf b/src/tests/modules/ldap/module.conf index 06266454c89..1b97d3906d8 100644 --- a/src/tests/modules/ldap/module.conf +++ b/src/tests/modules/ldap/module.conf @@ -471,6 +471,10 @@ ldap { # The solution is to either lower the 'min' connections, # or increase lifetime/idle_timeout. } + + bind_pool { + start = 0 + } } # @@ -583,6 +587,10 @@ ldap ldapssl { idle_timeout = 60 retry_delay = 1 } + + bind_pool { + start = 0 + } } # @@ -698,6 +706,10 @@ ldap ldaptls { idle_timeout = 60 retry_delay = 1 } + + bind_pool { + start = 0 + } } # @@ -745,6 +757,10 @@ ldap ldapsasl { idle_timeout = 60 retry_delay = 1 } + + bind_pool { + start = 0 + } } # @@ -788,4 +804,8 @@ ldap ldapldapi { idle_timeout = 60 retry_delay = 1 } + + bind_pool { + start = 0 + } }