mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-22 21:34:59 +00:00
Increased timeout for coder_thread.join() in benchmark.py.
This commit is contained in:
parent
be1cf5cc5d
commit
6731fb0710
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ def run_test(testdir, model_name, edit_format, retries):
|
|||
stop_event = threading.Event()
|
||||
coder_thread = threading.Thread(target=run_coder, args=(stop_event,))
|
||||
coder_thread.start()
|
||||
coder_thread.join(60) # 60 seconds timeout
|
||||
coder_thread.join(120) # seconds timeout
|
||||
|
||||
if coder_thread.is_alive():
|
||||
stop_event.set()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue