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 aa1bcc1 commit c83f52bCopy full SHA for c83f52b
aide/interpreter.py
@@ -186,12 +186,12 @@ def cleanup_session(self):
186
try:
187
# Reduce grace period from 2 seconds to 0.5
188
self.process.terminate()
189
- self.process.join(timeout=0.5)
+ self.process.join(timeout=2)
190
191
if self.process.exitcode is None:
192
logger.warning("Process failed to terminate, killing immediately")
193
self.process.kill()
194
195
196
197
logger.error("Process refuses to die, using SIGKILL")
0 commit comments