Scheduled scans run sequentially — one slow repo blocks all others #61
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
scan_all_repos awaits each repo scan serially. A slow repo blocks all subsequent scans. Fix: Fan out with tokio::spawn and a concurrency cap (e.g., Semaphore).