#timeout error during operation
1 messages · Page 1 of 1 (latest)
Please complete #938455615741775902 and someone from the community or one of our <@&938443185347244033> members will respond when they're available.
Including the meta.log from the beginning is a huge help use !logs for more information.
this log shows that it stops during " Downloading IMDb Interface: 53.0"
| Downloading IMDb Interface: 52.94%
| Downloading IMDb Interface: 53.0
| Traceback (most recent call last): |
| File "/usr/local/lib/python3.10/site-packages/urllib3/connectionpool.py", line 449, in _make_request |
| six.raise_from(e, None) |
| File "<string>", line 3, in raise_from |
| File "/usr/local/lib/python3.10/site-packages/urllib3/connectionpool.py", line 444, in _make_request |
| httplib_response = conn.getresponse() |
| File "/usr/local/lib/python3.10/http/client.py", line 1374, in getresponse |
| response.begin() |
| File "/usr/local/lib/python3.10/http/client.py", line 318, in begin |
| version, status, reason = self._read_status() |
| File "/usr/local/lib/python3.10/http/client.py", line 279, in _read_status |
| line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") |
| File "/usr/local/lib/python3.10/socket.py", line 705, in readinto |
| return self._sock.recv_into(b) |
| TimeoutError: timed out
Can you try on the develop branch just to see if that works?
NOTE: This is addressing changing from, for instance, latest to nightly.
The method depends on how you installed it.
I'm using docker locally:
docker pull meisnate12/plex-meta-manager:TAG_HERE
replace TAG_HERE with latest, develop, or nightly; whichever you want to switch to.
Then recreate your container via whatever means you used to create it [docker run, docker-compose, etc.], setting the image as meisnate12/plex-meta-manager:TAG_HERE
I'm using docker on a NAS or some other context without a command prompt:
The same concepts as above will apply:
:one: pull new image
:two: recreate container using that image instead of the current one.
Whatever the system, there will be a way to accpomplish these two things.
I'm running locally and retrieved the code via git:
cd DIRECTORY_WHERE_YOU_PUT_PMM
git checkout BRANCH_NAME
git stash
git stash clear
git pull
For BRANCH_NAME, substitute master, develop, or nightly
Those stash commands are going to discard any changes you may have made to PMM's own files. If that's a concern, you are probably familiar enough with git to know what you need to do instead.