mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
by now, don't bail out if monitoring cannot be set up
This commit is contained in:
parent
7fd2e65386
commit
524a7bc27a
1 changed files with 4 additions and 0 deletions
|
|
@ -209,7 +209,11 @@ ldap_back_db_open( BackendDB *be )
|
|||
/* monitor setup */
|
||||
rc = ldap_back_monitor_db_open( be );
|
||||
if ( rc != 0 ) {
|
||||
/* ignore by now */
|
||||
rc = 0;
|
||||
#if 0
|
||||
goto fail;
|
||||
#endif
|
||||
}
|
||||
|
||||
li->li_flags |= LDAP_BACK_F_ISOPEN;
|
||||
|
|
|
|||
Loading…
Reference in a new issue