Skip to content

Commit 0d293be

Browse files
authored
Merge pull request #1440 from Bastian-Krause/bst/externalconsole-bufsize
driver/externalconsoledriver: use bufsize=0 for opening external process
2 parents 2b5a67f + 169b525 commit 0d293be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labgrid/driver/externalconsoledriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def open(self):
3333
return
3434
cmd = shlex.split(self.cmd)
3535
self._child = subprocess.Popen(
36-
cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None
36+
cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None, bufsize=0
3737
)
3838

3939
# make stdout non-blocking

0 commit comments

Comments
 (0)