Skip to content

Commit

Permalink
Jellyfin: Bump import timeout from 10s to 120s (#1404)
Browse files Browse the repository at this point in the history
  • Loading branch information
C0rn3j authored Jan 20, 2025
1 parent c577be5 commit 9afde0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tauon/t_modules/t_jellyfin.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,9 @@ def ingest_library(self, return_list: bool = False) -> list[int] | None:
"mediaTypes": ["Audio"],
"recursive": True,
},
timeout=10,
# Someone had a local setup with 36k songs where sync took 31s,
# so let's wait a nice while before timing out
timeout=120,
#stream=True,
)

Expand Down

0 comments on commit 9afde0c

Please sign in to comment.