Avoid logging warnings when group deleted or member gone

If we got kicked out of a group, or the group got removed
we don't need to log a warning when stopping and an error
related to the above occurs.

Change-Id: Iccadd6483b7e75d1b1ce3c4e6904a22380af7f1c
This commit is contained in:
Joshua Harlow 2014-10-29 13:04:47 -07:00
parent 3a470225f9
commit 5c17f42318
1 changed files with 3 additions and 0 deletions

View File

@ -337,6 +337,9 @@ class RedisDriver(coordination.CoordinationDriver):
group_id = self._joined_groups.pop()
try:
self.leave_group(group_id).get()
except (coordination.MemberNotJoined,
coordination.GroupNotCreated):
pass
except coordination.ToozError:
LOG.warning("Unable to leave group '%s'", group_id,
exc_info=True)