Explicit buffer size isn't necessary

This commit is contained in:
Joe Rickerby
2020-06-26 12:55:38 +01:00
parent 68d8f89fb3
commit 1d9333689f
-2
View File
@@ -54,8 +54,6 @@ class DockerContainer:
encoding='utf8',
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
# make the input buffer large enough to carry a lot of environment
# variables. We choose 256kB.
bufsize=262144,
)
assert self.process.stdin and self.process.stdout