by now, don't bail out if monitoring cannot be set up

This commit is contained in:
Pierangelo Masarati 2006-09-14 22:26:37 +00:00
parent 7fd2e65386
commit 524a7bc27a

View file

@ -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;