Hello Sonarr experts!
I’m having a very strange issue that I cannot seem to track down. I’m starting to believe it may be a bug. In fact, there are multiple issues, but I am focusing on one initially, hoping that the root cause is behind the others. I have searched for similar issues in the forums and all I find are things from a year or more back that seemed to have been resolved.
Simply put, sonarr is requesting download of episodes that are not monitored. What’s more, it is sending downloads requests (in this case, a torrent) to a disabled client.
First, some preliminaries.
Version 2.0.0.3732 (from Jan 15th)
Software/hardware stack:
- Sonarr on Windows PC (10.11.12.30)
- NZBGet on raspberry pi (10.11.12.25)
- Transmission on same raspberry pi (10.11.12.25)
- Kodi on a different raspberry pi (10.11.12.26)
Here are two specific examples:
================== Example 1========================
Late Show with Colbert: Seasons and episodes all show unmonitored.
However, episode #89 above was sent to Transmission
but is NOT in my wanted queue.
And the weirdest part – Transmission is defined, but disabled, in my download client set up:
Plus I have turned off RSS and search for Kickass, the only torrent source I have.
============ Example 2 =============
Black Sails:
This one is slightly different, in that the Series is unmonitored, but the episode shows “greyed” monitored – and this one was sent to NZBGet to download (it failed, but the history is there).
The record in NZBget:
===================================
I have several more examples of completely unmonitored episodes showing up in Transmission. FYI, I have examined the database to be sure that the UI was telling me the truth with respect to Transmission and Kickass configuration:
SQL: select ID, Name, EnableRSS, EnableSearch from indexers;
ID|Name |EnableRSS|EnableSearch
–±--------------±--------±-----------
2 |KickassTorrents|0 |0
3 |nzbplanet.net |1 |1
4 |OZnzb.com |1 |1
5 |NZBndx |1 |1
And likewise for the monitored status of the series and episodes:
SQL:
select S.ID, S.Title, S.Status, S.Monitored, S.AddOptions, E.ID, E.title, E.monitored
from Series as S, Episodes as E
where S.id = E.SeriesID
and S.ID in (7, 19)
and E.id in (3997, 7943)
;
I enabled Trace logging and did a series Update. I found nothing related to those episodes or any others that were not already on the disk (lots of parsing messages at Debug level and some regex stuff at Trace level). I’m not sure it’s helpful, but I’ve pasted the log from that exercise at http://pastebin.com/L3d34a0t (expires Feb 24).
I sure hope I’m missing something and someone can point out the error of my ways. And if not, then I hope I’ve provided enough detail to lead to a resolution.
Let me know if there is anything else I can provide, and thanks in advance.
–Roger