Fixed
- Sonarr/Radarr rescans intermittently failing with
ReadTimeout. The flat 15 s timeout covered both connect and read, but the slow operation is the initialGET /api/v3/movie(or/api/v3/series) listing — large libraries on modest hardware easily take 20-40 s to serialise. Switched to a structuredhttpx.Timeout(connect=5, read=60, ...)so connect stays short (don't wait on an unreachable host) but the listing has room to complete. The list is cached for 5 minutes anyway, so the slow path only fires once per cache window.
Docker images
Pinned to this release:
docker pull ghcr.io/i-ial9000/shrinkerr:0.3.129 # portable (amd64 + arm64, CPU)
docker pull ghcr.io/i-ial9000/shrinkerr:0.3.129-nvenc # x86_64 + NVIDIA GPU (NVENC)
docker pull ghcr.io/i-ial9000/shrinkerr:0.3.129-edge # as above but ffmpeg master
docker pull ghcr.io/i-ial9000/shrinkerr:0.3.129-edge-nvencFloating tags (:latest, :edge, :nvenc, :edge-nvenc) track the most recent release of each lineage.