TVDB Troubles - Again
TVDB Troubles - Again
Filebot stopped negotiating with TVDB 10 hours ago and I wonder if this is the reason - or is it they're still 'working on something':
https://forums.thetvdb.com/viewtopic.ph ... e4#p168202
Also, apologies for adding a thread when this one already existed:
viewtopic.php?f=10&t=11416
https://forums.thetvdb.com/viewtopic.ph ... e4#p168202
Also, apologies for adding a thread when this one already existed:
viewtopic.php?f=10&t=11416
-
- Posts: 2
- Joined: 10 Jan 2020, 14:21
Re: TVDB Troubles - Again
Yep, I thought my network was being troublesome some way, it ends up they switched to some new API and stopped using legacy code. I tried using the TMVDB Episode format but it's not good.
Re: TVDB Troubles - Again
It is possible they still have the 'innards' in a bucket over at TVDB and this is temporary. Until we hear something official I am trying to remain.... calm.


Re: TVDB Troubles - Again
I'm netting read timeouts as well:
Not much we can do. Other than try again tomorrow. This kind of generic network issue is definitely a temporary one. Or use TheMovieDB (TV mode) instead.
Code: Select all
java.net.SocketTimeoutException: Read timed out

Re: TVDB Troubles - Again
Ah... good news.rednoah wrote: ↑10 Jan 2020, 15:22 I'm netting read timeouts as well:Code: Select all
java.net.SocketTimeoutException: Read timed out
Not much we can do. Other than try again tomorrow. This kind of generic network issue is definitely a temporary one. Or use TheMovieDB (TV mode) instead.
That means it's time to fire up COH2 for a few hours while we wait...lol
Thanks, Man.
Re: TVDB Troubles - Again
Is FileBot on the new API? https://forums.thetvdb.com/viewtopic.php?f=3&t=61687 (API Update: Removing legacy SSL support)
They might have turned off something
They might have turned off something
Re: TVDB Troubles - Again
Yes, but SSL changes would affect both v1 and v2 API clients. That being said, removal of legacy SSL versions won't affect FileBot, at least not recently (as in after ~2015) released versions, and the error would likely say something akin to SSL Handshake failed rather than Read timeout.
Re: TVDB Troubles - Again
So, a quick F5 twice tells me I'm on 4.8.5 and all I need do is continue doing something else for a while...rednoah wrote: ↑10 Jan 2020, 20:54 Yes, but SSL changes would affect both v1 and v2 API clients. That being said, removal of legacy SSL versions won't affect FileBot, at least not recently (as in after ~2015) released versions, and the error would likely say something akin to SSL Handshake failed rather than Read timeout.
OK... got that covered.

Re: TVDB Troubles - Again
Okay, thank you for clearing that up. Seems then we just have to wait on TheTVDB end.rednoah wrote: ↑10 Jan 2020, 20:54 Yes, but SSL changes would affect both v1 and v2 API clients. That being said, removal of legacy SSL versions won't affect FileBot, at least not recently (as in after ~2015) released versions, and the error would likely say something akin to SSL Handshake failed rather than Read timeout.
Re: TVDB Troubles - Again
All is well this morning. Everything working as expected.
Crisis over.
Crisis over.
Re: TVDB Troubles - Again
Correcto is working again, for me as well!
Re: TVDB Troubles - Again
Hi ! On Synology NAS AMC script is not working yet because of TVDB. Some solutions ?
Thank u
Thank u
Re: TVDB Troubles - Again
You could try configure retryDelay and retryLimit, so that it'll wait and try again later more often and longer:
FileBot 4.9.0 or higher is required.
FileBot will be running on your machine, mostly in idle state CPU wise, but in RAM. So if you use the settings from above, you might end up with a FileBot process waiting around for days until TheTVDB works again. This would be an easy but wasteful solution.
Code: Select all
export FILEBOT_OPTS="-Dnet.filebot.CachedResource.retryDelay=PT10M -Dnet.filebot.CachedResource.retryLimit=5 -Dnet.filebot.logging.time=true"


Re: TVDB Troubles - Again
I found during the outage that if FileBot is unable to reach TVDB, shows are processed into Unsorted and added to the exclude list. Is there a way to have FileBot instead retry them later please?
Re: TVDB Troubles - Again
1.
No, as that would require filebot to hang around forever. You can of course add your own macro-level retry behaviour that keeps track of things, and retries things as necessary.
2.
Yes, if you don't mind FileBot hanging around forever:
No, as that would require filebot to hang around forever. You can of course add your own macro-level retry behaviour that keeps track of things, and retries things as necessary.
2.
Yes, if you don't mind FileBot hanging around forever:
rednoah wrote: ↑13 Jan 2020, 10:33 You could try configure retryDelay and retryLimit, so that it'll wait and try again later more often and longer:Code: Select all
export FILEBOT_OPTS="-Dnet.filebot.CachedResource.retryDelay=PT10M -Dnet.filebot.CachedResource.retryLimit=5 -Dnet.filebot.logging.time=true"
FileBot 4.9.0 or higher is required.
FileBot will be running on your machine, mostly in idle state CPU wise, but in RAM. So if you use the settings from above, you might end up with a FileBot process waiting around for days until TheTVDB works again. This would be an easy but wasteful solution.