Skip to content

Commit b793856

Browse files
committed
Add debugger
1 parent 4ce895b commit b793856

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

manager/manager/docker_thread/docker_thread.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import subprocess
55
import os
66
import signal
7+
import sys
78

89

910
class DockerThread(threading.Thread):
@@ -19,7 +20,7 @@ def run(self):
1920
self.process = subprocess.Popen(
2021
self.cmd,
2122
shell=self.shell,
22-
stdout=subprocess.PIPE,
23+
stdout=sys.stdout,
2324
stderr=subprocess.PIPE,
2425
start_new_session=True,
2526
bufsize=1024,

0 commit comments

Comments
 (0)