From 70c1e4a18588a257e64a8343b91c52c9f7afd954 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Wed, 23 Oct 2013 14:05:39 +0200 Subject: beakerlib plugin: Don't try to submit logs if they are missing --- ipatests/beakerlib_plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ipatests/beakerlib_plugin.py b/ipatests/beakerlib_plugin.py index 45f34c6a6..71c1df537 100644 --- a/ipatests/beakerlib_plugin.py +++ b/ipatests/beakerlib_plugin.py @@ -116,6 +116,7 @@ class BeakerLibProcess(object): raiseonerr=False) if cmd.returncode: self.log.warn('Could not collect all requested logs') + return # Copy and unpack on the local side topdirname = tempfile.mkdtemp() -- cgit