Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
copilot-swe-agent[bot]
06e3b9fa35 Remove redundant asyncio import (already imported at module level)
Co-authored-by: edwinjosechittilappilly <15969583+edwinjosechittilappilly@users.noreply.github.com>
2025-12-08 21:27:07 +00:00
copilot-swe-agent[bot]
8fe3c55296 Increase sleep time from 2 to 5 seconds after stopping services
Co-authored-by: edwinjosechittilappilly <15969583+edwinjosechittilappilly@users.noreply.github.com>
2025-12-08 21:24:54 +00:00
copilot-swe-agent[bot]
38ab98a743 Initial plan 2025-12-08 21:20:11 +00:00

View file

@ -1390,9 +1390,8 @@ class ContainerManager:
yield False, "Failed to stop services, aborting prune"
return
# Give services time to fully stop
import asyncio
await asyncio.sleep(2)
# Give services time to fully stop and release image locks
await asyncio.sleep(5)
yield False, "Scanning for OpenRAG images..."