We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ce895b commit b793856Copy full SHA for b793856
1 file changed
manager/manager/docker_thread/docker_thread.py
@@ -4,6 +4,7 @@
4
import subprocess
5
import os
6
import signal
7
+import sys
8
9
10
class DockerThread(threading.Thread):
@@ -19,7 +20,7 @@ def run(self):
19
20
self.process = subprocess.Popen(
21
self.cmd,
22
shell=self.shell,
- stdout=subprocess.PIPE,
23
+ stdout=sys.stdout,
24
stderr=subprocess.PIPE,
25
start_new_session=True,
26
bufsize=1024,
0 commit comments