diff options
author | Michael Adam <obnox@samba.org> | 2011-12-23 15:14:06 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-12-23 17:39:12 +0100 |
commit | 26cac0627ef3d50528e316db2a39cc05df5df2f0 (patch) | |
tree | 62b273f71707e78bc6da03f5f94311600138f888 | |
parent | 190b1b240ca191c1e09676082f52ae1434343992 (diff) | |
download | samba-26cac0627ef3d50528e316db2a39cc05df5df2f0.tar.gz samba-26cac0627ef3d50528e316db2a39cc05df5df2f0.tar.xz samba-26cac0627ef3d50528e316db2a39cc05df5df2f0.zip |
vacuum: add debug message to insert_record_into_delete_queue() for failed insert
(This used to be ctdb commit ae78e8d991636a3a79dd9fbcefc15032afb08f55)
-rw-r--r-- | ctdb/server/ctdb_vacuum.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ctdb/server/ctdb_vacuum.c b/ctdb/server/ctdb_vacuum.c index e77f160103..2832bae9c0 100644 --- a/ctdb/server/ctdb_vacuum.c +++ b/ctdb/server/ctdb_vacuum.c @@ -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; } |