mirror of https://github.com/apache/kafka.git
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:
parent
7868e65775
commit
5307efe1ae
|
@ -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):
|
||||||
|
|
Loading…
Reference in New Issue