diff options
author | Tomi Juvonen <tomi.juvonen@nokia.com> | 2018-10-25 13:36:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-10-25 13:36:16 +0000 |
commit | baac6579556f8216b36db0d0f87f9c2d4f8b4ef5 (patch) | |
tree | 71d467ffd009f469671d77927f34b15098ecd431 /doctor_tests/common | |
parent | 23bf63c4616040cb0d69cd26238af2a4a7c00a90 (diff) | |
parent | a6575910a137f8932e294f66c9da3194ad937691 (diff) |
Merge "Support Apex with services in containers"
Diffstat (limited to 'doctor_tests/common')
-rw-r--r-- | doctor_tests/common/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doctor_tests/common/utils.py b/doctor_tests/common/utils.py index 1a84c824..1a8840dd 100644 --- a/doctor_tests/common/utils.py +++ b/doctor_tests/common/utils.py @@ -67,7 +67,7 @@ class SSHClient(object): def __del__(self): self.client.close() - def ssh(self, command): + def ssh(self, command, raise_enabled=True): if self.log: self.log.info("Executing: %s" % command) stdin, stdout, stderr = self.client.exec_command(command) @@ -75,7 +75,7 @@ class SSHClient(object): output = list() for line in stdout.read().splitlines(): output.append(line.decode('utf-8')) - if ret: + if ret and raise_enabled: if self.log: self.log.info("*** FAILED to run command %s (%s)" % (command, ret)) |