MINOR: Fix re-raise of python error in system tests

Author: Ewen Cheslack-Postava <me@ewencp.org>

Reviewers: Jason Gustafson <jason@confluent.io>

Closes #2099 from ewencp/fix-python-reraise
This commit is contained in:
Ewen Cheslack-Postava 2016-11-04 15:57:12 -07:00
parent 7868e65775
commit 5307efe1ae
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class ProduceConsumeValidateTest(Test):
except BaseException as e: except BaseException as e:
for s in self.test_context.services: for s in self.test_context.services:
self.mark_for_collect(s) self.mark_for_collect(s)
raise e raise
@staticmethod @staticmethod
def annotate_missing_msgs(missing, acked, consumed, msg): def annotate_missing_msgs(missing, acked, consumed, msg):