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 13f432f commit 101a8ebCopy full SHA for 101a8eb
1 file changed
render_machine/render_utils.py
@@ -94,8 +94,8 @@ def execute_script( # noqa: C901
94
try:
95
while proc.poll() is None:
96
if time.time() - start_time >= script_timeout:
97
- partial_stdout = proc.stdout.read()
98
_kill_process(proc)
+ partial_stdout = proc.stdout.read()
99
exc = subprocess.TimeoutExpired(cmd, script_timeout)
100
exc.stdout = partial_stdout
101
raise exc
0 commit comments