Commit be6825a9 authored by Antoine Catton's avatar Antoine Catton

Minor fix: stderr reading by promises

This fix make the TestSlapgridCPWithMaster.test_stderr_has_been_sent
pass
parent c789d9b7
......@@ -485,7 +485,7 @@ class Slapgrid(object):
kw = dict()
if not self.console:
kw.update(stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
kw.update(stdout=subprocess.PIPE, stderr=subprocess.PIPE)
process_handler = SlapPopen(command,
preexec_fn=lambda: dropPrivileges(uid, gid),
......
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