mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-09 22:04:12 -05:00
ITS#9984 Keep listener base around even if not active
This commit is contained in:
parent
f58f2160ba
commit
bd3b6b679f
1 changed files with 2 additions and 1 deletions
|
|
@ -949,7 +949,8 @@ lload_listener(
|
|||
static void *
|
||||
lload_listener_thread( void *ctx )
|
||||
{
|
||||
int rc = event_base_dispatch( listener_base );
|
||||
/* ITS#9984 Survive the listeners being paused if we run out of fds */
|
||||
int rc = event_base_loop( listener_base, EVLOOP_NO_EXIT_ON_EMPTY );
|
||||
Debug( LDAP_DEBUG_ANY, "lload_listener_thread: "
|
||||
"event loop finished: rc=%d\n",
|
||||
rc );
|
||||
|
|
|
|||
Loading…
Reference in a new issue