Skip to content

Commit 806885e

Browse files
committed
Add debug
1 parent 90916b4 commit 806885e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

manager/manager/docker_thread/docker_thread.py

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

99
class DockerThread(threading.Thread):
1010
"""Threaded Docker Thread Class"""
@@ -19,7 +19,7 @@ def run(self):
1919
self.process = subprocess.Popen(
2020
self.cmd,
2121
shell=self.shell,
22-
stdout=subprocess.PIPE,
22+
stdout=sys.stdout,
2323
stderr=subprocess.PIPE,
2424
start_new_session=True,
2525
bufsize=1024,

0 commit comments

Comments
 (0)