From 9770e6d667922b07bb8201c6ada53ec3828ffd2a Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 20 Jan 2026 22:38:18 -0500 Subject: [PATCH] jellyfin-qbittorrent-monitor: fix mock qbittorrent --- tests/jellyfin-qbittorrent-monitor.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/jellyfin-qbittorrent-monitor.nix b/tests/jellyfin-qbittorrent-monitor.nix index 281bf61..d52be5b 100644 --- a/tests/jellyfin-qbittorrent-monitor.nix +++ b/tests/jellyfin-qbittorrent-monitor.nix @@ -34,6 +34,7 @@ let self.end_headers() + socketserver.TCPServer.allow_reuse_address = True with socketserver.TCPServer(("0.0.0.0", 8080), Handler) as s: print("Mock qBittorrent on port 8080") s.serve_forever()