Skip to content
Snippets Groups Projects
Commit 5d9479a3 authored by Howard Chu's avatar Howard Chu
Browse files

Add debug if bdb_cache_entry_db_lock fails to get a lock

to assist in diagnosing ITS#1986
parent 7dc1e069
No related branches found
No related tags found
No related merge requests found
......@@ -149,6 +149,17 @@ bdb_cache_entry_db_lock
lockobj.size = e->e_nname.bv_len;
rc = LOCK_GET(env, locker, flags | DB_LOCK_NOWAIT,
&lockobj, db_rw, lock);
if (rc) {
#ifdef NEW_LOGGING
LDAP_LOG( CACHE, DETAIL1,
"bdb_cache_entry_db_lock: entry %s, rw %d, rc %d\n",
e->e_nname.bv_val, rw, rc );
#else
Debug( LDAP_DEBUG_TRACE,
"bdb_cache_entry_db_lock: entry %s, rw %d, rc %d\n",
e->e_nname.bv_val, rw, rc );
#endif
}
return rc;
}
......
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