Commit 82a42e46 authored by Nicolas Wavrant's avatar Nicolas Wavrant

fixup

parent d8de762d
...@@ -187,9 +187,9 @@ class ResiliencyTestSuite(object): ...@@ -187,9 +187,9 @@ class ResiliencyTestSuite(object):
'--cfg=%s' % slapos_configuration_file_path, '--cfg=%s' % slapos_configuration_file_path,
'--pidfile=slapos.pid'] '--pidfile=slapos.pid']
self.logger.info('Running "slapos node instance" with command : %s' % ' '.join(command)) self.logger.info('Running "slapos node instance" with command : %s' % ' '.join(command))
stdin, stdout = subprocess.Popen(command, stdout=devnull, stderr=stderr).communicate() stdin, stdout = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
stdin, stdout = subprocess.Popen(command, stdout=devnull, stderr=stderr).communicate() stdin, stdout = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
stdin, stdout = subprocess.Popen(command, stdout=devnull, stderr=stderr).communicate() stdin, stdout = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
if stdout: if stdout:
print "Erreur when running slapos node instance :" print "Erreur when running slapos node instance :"
print stderr print stderr
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment