Skip to content
Snippets Groups Projects
Commit 1c2759e6 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

cache backend was not started up

parent 62a3f8a3
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment