diff options
author | Michael Adam <obnox@samba.org> | 2014-02-16 00:26:00 +0100 |
---|---|---|
committer | Amitay Isaacs <amitay@gmail.com> | 2014-03-06 11:31:15 +1100 |
commit | 7983946680ac0de8f82dfee6f0f849a11653d042 (patch) | |
tree | 14be3a3063d2023b19753ea943e0b601a094849a | |
parent | f3483de240987f05cc20f747ac467c8ed81bb03e (diff) | |
download | samba-7983946680ac0de8f82dfee6f0f849a11653d042.tar.gz samba-7983946680ac0de8f82dfee6f0f849a11653d042.tar.xz samba-7983946680ac0de8f82dfee6f0f849a11653d042.zip |
ctdb-vacuum: don't stop in process_vacuum_fetch_lists when sending to one node fails.
We should try to continue vacuuming as much as possible.
Failure to send records to one lmaster doesn't mean the
others will fail too.
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
-rw-r--r-- | ctdb/server/ctdb_vacuum.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ctdb/server/ctdb_vacuum.c b/ctdb/server/ctdb_vacuum.c index cee5bef2b1..89327def78 100644 --- a/ctdb/server/ctdb_vacuum.c +++ b/ctdb/server/ctdb_vacuum.c @@ -793,7 +793,6 @@ static int ctdb_process_vacuum_fetch_lists(struct ctdb_db_context *ctdb_db, DEBUG(DEBUG_ERR, (__location__ " Failed to send vacuum " "fetch message to %u\n", ctdb->nodes[i]->pnn)); - return -1; } } |