1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

vacuum: add debug message to insert_record_into_delete_queue() for failed insert

(This used to be ctdb commit ae78e8d991636a3a79dd9fbcefc15032afb08f55)
This commit is contained in:
Michael Adam 2011-12-23 15:14:06 +01:00
parent 190b1b240c
commit 26cac0627e

View File

@ -1473,6 +1473,10 @@ static int insert_record_into_delete_queue(struct ctdb_db_context *ctdb_db,
ctdb_db->delete_queue,
hdr, key);
if (ret != 0) {
DEBUG(DEBUG_INFO,
(__location__ " schedule for deletion: error "
"inserting key with hash 0x%08x into delete queue\n",
hash));
return -1;
}