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.
2 parents 1245025 + 0ad26e3 commit ea3d415Copy full SHA for ea3d415
chatdev/chat_env.py
@@ -111,6 +111,8 @@ def exist_bugs(self) -> tuple[bool, str]:
111
os.killpg(os.getpgid(process.pid), signal.SIGTERM)
112
else:
113
os.kill(process.pid, signal.SIGTERM)
114
+ if process.poll() is None:
115
+ os.kill(process.pid,signal.CTRL_BREAK_EVENT)
116
117
if return_code == 0:
118
return False, success_info
0 commit comments