Skip to content
Snippets Groups Projects
Commit 2632770d authored by Auke Klazema's avatar Auke Klazema
Browse files

Merge branch 'SW-961-fix-pipelinecontrol-2' into 'master'

SW-961: Log stderr but do not use it as output to parse. Unfortunately, slurm...

Closes SW-961

See merge request !423
parents 15f05cde c3bc181a
No related branches found
No related tags found
1 merge request!423SW-961: Log stderr but do not use it as output to parse. Unfortunately, slurm...
...@@ -102,15 +102,17 @@ def runCommand(cmdline, input=None): ...@@ -102,15 +102,17 @@ def runCommand(cmdline, input=None):
cmdline, cmdline,
stdin=subprocess.PIPE if input else None, stdin=subprocess.PIPE if input else None,
stdout=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.STDOUT, stderr=subprocess.PIPE,
shell=True, shell=True,
universal_newlines=True universal_newlines=True
) )
# Feed input and wait for termination # Feed input and wait for termination
logger.debug("runCommand input: %s", input) logger.debug("runCommand input: %s", input)
stdout, _ = communicate_returning_strings(proc, input) stdout, stderr = communicate_returning_strings(proc, input)
logger.debug("runCommand output: %s", stdout) logger.debug("runCommand output: %s", stdout)
if stderr:
logger.warn("runCommand stderr output: %s", stderr)
# Check exit status, bail on error # Check exit status, bail on error
if proc.returncode != 0: if proc.returncode != 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment