From: Thierry Parmentelat Date: Tue, 15 Mar 2016 14:46:24 +0000 (+0100) Subject: nothing wrong with a stderr being not empty X-Git-Tag: nepi-6.1.1-pypi~2 X-Git-Url: http://git.onelab.eu/?p=nepi.git;a=commitdiff_plain;h=ddb5d7e50ffef50b41186199de2a9b6b21850bf8 nothing wrong with a stderr being not empty --- diff --git a/nepi/resources/linux/application.py b/nepi/resources/linux/application.py index 4874a0e0..e4086b8d 100644 --- a/nepi/resources/linux/application.py +++ b/nepi/resources/linux/application.py @@ -729,10 +729,15 @@ class LinuxApplication(ResourceManager): = self.node.check_errors(self.run_home) if err: - msg = "Failed to execute command '{}'"\ - .format(self.get("command")) - self.error(msg, out, err) - self.do_fail() + # Thierry : there's nothing wrong with a non-empty + # stderr, is there ? + #msg = "Failed to execute command '{}'"\ + # .format(self.get("command")) + #self.error(msg, out, err) + #self.do_fail() + # xxx TODO OTOH it would definitely make sense + # to check the exitcode + pass else: self.set_stopped()