mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 09:39:45 -05:00
cache backend was not started up
This commit is contained in:
parent
62a3f8a391
commit
1c2759e689
1 changed files with 10 additions and 0 deletions
|
|
@ -1873,6 +1873,16 @@ proxy_cache_open(
|
|||
rc = cm->db.bd_info->bi_db_open( &cm->db );
|
||||
}
|
||||
|
||||
if ( rc != 0 ) {
|
||||
return rc;
|
||||
}
|
||||
|
||||
rc = backend_startup( &cm->db );
|
||||
|
||||
if ( rc != 0 ) {
|
||||
return rc;
|
||||
}
|
||||
|
||||
/* There is no runqueue in TOOL mode */
|
||||
if ( slapMode & SLAP_SERVER_MODE ) {
|
||||
ldap_pvt_thread_mutex_lock( &syncrepl_rq.rq_mutex );
|
||||
|
|
|
|||
Loading…
Reference in a new issue