Skip to content

Commit

Permalink
Don't wait for the server to die infinitely
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyGuthridge committed Jun 2, 2023
1 parent ac79550 commit 6f67096
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ def main():
timeout = True
duration = perf_counter() - start_time
server_proc.interrupt()
server_proc.wait()
server_proc.wait(1)
server_proc.kill()
if timeout:
print_output(
server,
Expand Down

0 comments on commit 6f67096

Please sign in to comment.