Try using an Unbuffered sys.stderr

This commit is contained in:
Joe Rickerby
2020-11-24 18:48:27 +00:00
parent ba01ec546e
commit 4c035a441b
2 changed files with 1 additions and 3 deletions
-3
View File
@@ -57,9 +57,6 @@ class DockerContainer:
],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
# output the subcommand stderr to our stdout. Avoids ordering
# problems between log messages on stderr and stdout
stderr=sys.stdout,
)
assert self.process.stdin and self.process.stdout