We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0f8573 commit df861ffCopy full SHA for df861ff
executor/engine/__init__.py
@@ -1,7 +1,7 @@
1
from .core import Engine, EngineSetting
2
from .job import LocalJob, ThreadJob, ProcessJob
3
4
-__version__ = '0.3.1'
+__version__ = '0.3.2'
5
6
__all__ = [
7
'Engine', 'EngineSetting',
executor/engine/job/extend/subprocess.py
@@ -120,7 +120,8 @@ def _run_cmd(runner: ProcessRunner): # pragma: no cover
120
runner.run(**pkwargs)
121
with open(path_stdout, 'w') as fo, \
122
open(path_stderr, 'w') as fe:
123
- retcode = runner.write_stream_until_stop(fo, fe)
+ retcode = runner.write_stream_until_stop(
124
+ fo, fe, flush_streams_each_time=True)
125
return retcode
126
else:
127
def _run_cmd(runner: ProcessRunner):
0 commit comments