From 3678eb8841d553a4ec3109e3b78079db05b3e6e7 Mon Sep 17 00:00:00 2001 From: Hanno Schlichting Date: Mon, 3 Sep 2012 19:07:40 +0200 Subject: ignore another edge-case in recipe.barrier --- kazoo/recipe/barrier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kazoo/recipe/barrier.py b/kazoo/recipe/barrier.py index e83c4cf..5054f06 100644 --- a/kazoo/recipe/barrier.py +++ b/kazoo/recipe/barrier.py @@ -152,7 +152,7 @@ class DoubleBarrier(object): """Leave the barrier, blocks until all nodes have left""" try: self.client.retry(self._inner_leave) - except Exception: + except Exception: # pragma: nocover # Failed to cleanly leave self._best_effort_cleanup() self.participating = False -- cgit v1.2.1