-
-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Automatically interrupt during download #706
Labels
bug
Something isn't working
Comments
Python 3.10.9 |
There are new errors again: rip url https://www.qobuz.com/us-en/interpreter/-10652065/6949080
[14:19:23] INFO Skipping track 246029112. Marked as downloaded in the database. track.py:101
INFO Skipping track 246029113. Marked as downloaded in the database. track.py:101
INFO Skipping track 246029117. Marked as downloaded in the database. track.py:101
─────────────────── Downloading Fantasy, 聽見下雨的聲音, Greatest Works of Art... ───────────────────
Track 10 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━ 79.4% • 161.6 kB/s • 0:01:21
Track 5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺ 98.9% • 238.5 kB/s • 0:00:03
Track 3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━ 67.8% • 116.0 kB/s • 0:02:37
Track 7 ━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21.0% • 147.4 kB/s • 0:04:18
Track 1 ━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.0% • 226.0 kB/s • 0:03:14
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /opt/homebrew/Caskroom/miniconda/base/bin/rip:8 in <module> │
│ │
│ 5 from streamrip.rip import rip │
│ 6 if __name__ == '__main__': │
│ 7 │ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) │
│ ❱ 8 │ sys.exit(rip()) │
│ 9 │
│ │
│ /opt/homebrew/Caskroom/miniconda/base/lib/python3.10/site-packages/click/core.py:1157 in │
│ __call__ │
│ │
│ ... 23 frames hidden ... │
│ │
│ /opt/homebrew/Caskroom/miniconda/base/lib/python3.10/site-packages/aiohttp/streams.py:311 in │
│ _wait │
│ │
│ 308 │ │ │
│ 309 │ │ waiter = self._waiter = self._loop.create_future() │
│ 310 │ │ try: │
│ ❱ 311 │ │ │ with self._timer: │
│ 312 │ │ │ │ await waiter │
│ 313 │ │ finally: │
│ 314 │ │ │ self._waiter = None │
│ │
│ /opt/homebrew/Caskroom/miniconda/base/lib/python3.10/site-packages/aiohttp/helpers.py:735 in │
│ __exit__ │
│ │
│ 732 │ │ │ self._tasks.pop() │
│ 733 │ │ │
│ 734 │ │ if exc_type is asyncio.CancelledError and self._cancelled: │
│ ❱ 735 │ │ │ raise asyncio.TimeoutError from None │
│ 736 │ │ return None │
│ 737 │ │
│ 738 │ def timeout(self) -> None: │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
TimeoutError
sys:1: RuntimeWarning: coroutine 'Artist._download_async.<locals>._rip' was never awaited |
Possible duplicate of 635 |
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /opt/homebrew/Caskroom/miniconda/base/envs/rip/bin/rip:8 in <module> │
│ │
│ 5 from streamrip.rip import rip │
│ 6 if __name__ == '__main__': │
│ 7 │ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) │
│ ❱ 8 │ sys.exit(rip()) │
│ 9 │
│ │
│ /opt/homebrew/Caskroom/miniconda/base/envs/rip/lib/python3.12/site-packages/click/core.py:1157 │
│ in __call__ │
│ │
│ ... 24 frames hidden ... │
│ │
│ /opt/homebrew/Caskroom/miniconda/base/envs/rip/lib/python3.12/site-packages/aiohttp/client_reqre │
│ p.py:976 in start │
│ │
│ 973 │ │ │ │ # read response │
│ 974 │ │ │ │ try: │
│ 975 │ │ │ │ │ protocol = self._protocol │
│ ❱ 976 │ │ │ │ │ message, payload = await protocol.read() # type: ignore[union-attr] │
│ 977 │ │ │ │ except http.HttpProcessingError as exc: │
│ 978 │ │ │ │ │ raise ClientResponseError( │
│ 979 │ │ │ │ │ │ self.request_info, │
│ │
│ /opt/homebrew/Caskroom/miniconda/base/envs/rip/lib/python3.12/site-packages/aiohttp/streams.py:6 │
│ 40 in read │
│ │
│ 637 │ │ │ assert not self._waiter │
│ 638 │ │ │ self._waiter = self._loop.create_future() │
│ 639 │ │ │ try: │
│ ❱ 640 │ │ │ │ await self._waiter │
│ 641 │ │ │ except (asyncio.CancelledError, asyncio.TimeoutError): │
│ 642 │ │ │ │ self._waiter = None │
│ 643 │ │ │ │ raise │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
ServerDisconnectedError: Server disconnected
sys:1: RuntimeWarning: coroutine 'Artist._download_async.<locals>._rip' was never awaited |
I have the same error, although it may be related to simultaneous downloads. If I limit track downloads to 1 track at a time it works as normal. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Interrupted midway through each download and displayed ClientPayloadError
Command Used
Debug Traceback
Config File
Operating System
MacOS 14.5
streamrip version
2.0.5
Screenshots and recordings
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: