diff options
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/dbwrap_ctdb.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/lib/dbwrap_ctdb.c b/source3/lib/dbwrap_ctdb.c index 1f6af437cf..8563990a84 100644 --- a/source3/lib/dbwrap_ctdb.c +++ b/source3/lib/dbwrap_ctdb.c @@ -419,6 +419,10 @@ again: } if ((data.dsize != sizeof(pid_t)) || (*(pid_t *)(data.dptr) != pid)) { + DEBUG(3, (__location__ " refetch transaction lock record: " + "another local process has started a transaction " + "(stored pid [%u] != my pid [%u]) - retrying\n", + *(pid_t *)(data.dptr), pid)); tdb_transaction_cancel(ctx->wtdb->tdb); talloc_free(tmp_ctx); goto again; |