barbequesauce / Watcher3

Fork of nosmokingbandit/Watcher3 as the original seems inactive. PRs welcome, support is community based.
Other
69 stars 19 forks source link

Backlog search crash with ajax error #36

Closed jandreaucodes closed 5 years ago

jandreaucodes commented 5 years ago

I'd love a button or something to force a backlog search of all wanted/waiting movies.

I'm not sure how frequently Watcher3 checks for new torrents being available, but I feel like I see stuff in Top 100 on TPB that have been there for days and Watcher3 never picks them up, so I end up manually downloading them.

Having an option to force a backlog search (like pyMedusa, for example) would save the time of going through each movie and looking for a matching release.

barbequesauce commented 5 years ago

There is a backlog search. Under Library, select Manage. Then, under Attribute, select Wanted and then click the magnifying glass...

jandreaucodes commented 5 years ago

Oh, sweet. I don't think I ever even looked at the Manage section.

Is there a default setting for how frequently the backlog gets searched?

jandreaucodes commented 5 years ago

I get a 500 error when trying to force the backlog from Library → Manage, but only for "Waiting". My "Wanted" works.

I'm wondering if maybe one of my "Waiting" movies has a title that's causing issues. One of the first ones has a comma in it. I wonder if that's causing a parsing issue?

Nothing logged in log.txt, either.

EDIT: Confirmed, the comma caused the issue. I removed the movie (20,000 Leagues Under the Sea) and then was able to proceed without the 500 error.

barbequesauce commented 5 years ago

It should search once an hour.

Can you open the JavaScript console on your browser and see if there are details on the 500 error?

jandreaucodes commented 5 years ago

Once my backlog finishes, I'll re-add the problematic movie and see if there are any browser console errors. Stand by a bit!

jandreaucodes commented 5 years ago

Here's the error when I re-add something with a comma in its name:

POST http://192.168.1.20:9090/ajax/manager_backlog_search 500 (Internal Server Error) send @ jquery.310.min.js?v=010:4 ajax @ jquery.310.min.js?v=010:4 _manager_request @ manage.js?v=013:182 _backlog_search @ manage.js?v=013:115 begin_task @ manage.js?v=013:110 onclick @ VM1612:2 VM1613:1 Uncaught SyntaxError: Unexpected token U in JSON at position 0 at JSON.parse (<anonymous>) at XMLHttpRequest.onprogress (manage.js?v=013:198)

Screenshot in case that code's unreadable:

image

jandreaucodes commented 5 years ago

I don't think my backlog scan is working. When I forced it to run, it found about 40 movies that have been in my queue for weeks (or longer). Is there somewhere I can check that it's running on its own cron?

barbequesauce commented 5 years ago

All the scheduled jobs are visible on the bottom of the System page under Settings. The one you're looking for is Movie Search.

Have to admit I'm happy, that error means it's not something that I did :)

I'm going to have to add some debug statements to try and capture what's going on, bear with me - probably have those posted Monday.

jandreaucodes commented 5 years ago

Weird. It shows running every hour but it’s definitely not finding movies that find matches when I force the backlog search.

Mosf of those movies were added by RSS. I’m not sure that matters much but figured if mention it just in case it does.

I’ll do some more testing on Monday to see if I can figure out any other commonalities or going any b errors in my logs or browser console.

barbequesauce commented 5 years ago

If you can grab a copy of the log from a backlog scan that would help too...

jandreaucodes commented 5 years ago

Here's my log from Friday until this morning. I'm not sure what you're looking for in it, so I included the whole thing.

log.txt

I did another test of adding a movie I know there's torrents for (Spider-man: Far From Home) and waited until Saturday. When it didn't auto-download, I forced a backlog scan which changed it from "Waiting" to "Found". So it seems like, at least sometimes, that the automatic backlog scan isn't working for me.

barbequesauce commented 5 years ago

OK - taking a look now, on first pass I saw this - is transmission working in general?

INFO [2019-09-22 20:19:13,046] core.snatcher.get_best_release.89: Selecting best release for Angel of Mine
DEBUG [2019-09-22 20:19:13,047] core.sqldb.get_search_results.419: Retrieving Search Results for tt7058080.
DEBUG [2019-09-22 20:19:13,047] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM SEARCHRESULTS WHERE imdbid="tt7058080" ORDER BY score DESC , CASE type WHEN "nzb" THEN 0\n                                WHEN "torrent" THEN 1\n                                WHEN "magnet" THEN 1\n                    END DESC\n                , size DESC, freeleech DESC']
INFO [2019-09-22 20:19:13,053] core.snatcher.get_best_release.139: Angel Of Mine 2019 1080p WEB-DL DD5 1 H264-FGT is best available result for Angel of Mine
INFO [2019-09-22 20:19:13,053] core.snatcher.download.162: Sending Angel Of Mine 2019 1080p WEB-DL DD5 1 H264-FGT to download client.
INFO [2019-09-22 20:19:13,053] core.snatcher.snatch_torrent.249: Sending torrent to Transmission
INFO [2019-09-22 20:19:13,054] core.downloaders.Transmission.add_torrent.49: Sending torrent Angel Of Mine 2019 1080p WEB-DL DD5 1 H264-FGT to Transmission.
ERROR [2019-09-22 20:19:13,143] core.downloaders.Transmission.add_torrent.90: Unable to send torrent to TransmissionRPC.
Traceback (most recent call last):
  File "/Applications/Watcher/Watcher3/core/downloaders/Transmission.py", line 83, in add_torrent
    download = client.add_torrent(url, paused=paused, bandwidthPriority=bandwidthPriority, download_dir=download_dir, timeout=30)
  File "/Applications/Watcher/Watcher3/lib/transmissionrpc/client.py", line 380, in add_torrent
    torrent_file = urlopen(req)
  File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py", line 222, in urlopen
    return opener.open(url, data, timeout)
  File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py", line 531, in open
    response = meth(req, response)
  File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py", line 641, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py", line 569, in error
    return self._call_chain(*args)
  File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py", line 503, in _call_chain
    result = func(*args)
  File "/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/lib/python3.7/urllib/request.py", line 649, in http_error_default
    raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 503: Service Temporarily Unavailable
jandreaucodes commented 5 years ago

I periodically get a 503 when I try to manually add a torrent to Transmission, but it's running all the time and usually works fine.

I think it might have something to do with the provider. Sometimes RarBG and LimeTorrentz throw that error and then I click on TBP and it works fine.

barbequesauce commented 5 years ago

OK - so SM:FFH is flagged as "Disabled" in the auto-searches; that happens when the file already exists in the library, or a CP import has it marked as "done". Can you confirm both conditions are incorrect please?

jandreaucodes commented 5 years ago

That's correct now. I manually forced it to download and then marked it as Finished once it completed.

barbequesauce commented 5 years ago

Was that the case as of [2019-09-22 15:19:13,356] ?

jandreaucodes commented 5 years ago

Yes. Want me to test with something new?

barbequesauce commented 5 years ago

Yes please... need to see what happens before it's added...

jandreaucodes commented 5 years ago

Okay, so I added The Godfather (clearly there's a torrent for that) and it seems to have worked immediately. Here's the logs for that:

INFO [2019-09-23 11:08:48,019] core.ajax.get_log_text.512: Dumping log file log.txt to text. DEBUG [2019-09-23 11:08:40,082] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM SEARCHRESULTS WHERE imdbid="tt0068646" ORDER BY score DESC , CASE type WHEN "nzb" THEN 0\n WHEN "torrent" THEN 1\n WHEN "magnet" THEN 1\n END DESC\n , size DESC, freeleech DESC'] DEBUG [2019-09-23 11:08:40,081] core.sqldb.get_search_results.419: Retrieving Search Results for tt0068646. DEBUG [2019-09-23 11:08:40,080] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MOVIES WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:40,080] core.sqldb.get_movie_details.391: Retrieving details for movie tt0068646. DEBUG [2019-09-23 11:08:40,078] core.sqldb.execute.156: Executing SQL command: ['UPDATE MOVIES SET backlog=? WHERE imdbid=?', ('1', 'tt0068646')] DEBUG [2019-09-23 11:08:40,078] core.sqldb.update.235: Updating backlog to 1 for rows that match imdbid:tt0068646 in MOVIES. DEBUG [2019-09-23 11:08:40,077] core.sqldb.execute.156: Executing SQL command: ['UPDATE MOVIES SET status=? WHERE imdbid=?', ('Snatched', 'tt0068646')] DEBUG [2019-09-23 11:08:40,077] core.sqldb.update.235: Updating status to Snatched for rows that match imdbid:tt0068646 in MOVIES. INFO [2019-09-23 11:08:40,076] core.library.movie_status.1053: Setting MOVIES tt0068646 status to Snatched. DEBUG [2019-09-23 11:08:40,073] core.sqldb.execute.156: Executing SQL command: ['SELECT DISTINCT status FROM SEARCHRESULTS WHERE imdbid="tt0068646" AND type IN ("import", "torrent", "magnet")'] DEBUG [2019-09-23 11:08:40,071] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MOVIES WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:40,070] core.sqldb.get_movie_details.391: Retrieving details for movie tt0068646. INFO [2019-09-23 11:08:40,070] core.library.movie_status.1016: Determining appropriate status for movie tt0068646. DEBUG [2019-09-23 11:08:40,068] core.sqldb.execute.156: Executing SQL command: [<sqlalchemy.sql.dml.Insert object at 0x107a15210>, [{'title': 'The.Godfather.1972.720p.BluRay.H264.AAC-RARBG', 'seeders': 3, 'size': 2297645621, 'pubdate': None, 'indexer': 'Rarbg', 'info_link': 'https://torrentapi.org/redirect_to_info.php?token=h1eai7vxuk&p=1_7_1_9_8_7_6__325bb75c5e', 'torrentfile': 'magnet:?xt=urn:btih:325bb75c5ed157896d82b37b59724237d11aff64&dn=The.Godfather.1972.720p.BluRay.H264.AAC-RARBG&tr=http%3A%2F%2Ftracker.trackerfix.com%3A80%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710&tr=udp%3A%2F%2F9.rarbg.to%3A2710&tr=udp%3A%2F%2Fopen.demonii.com%3A1337%2Fannounce', 'guid': '325bb75c5ed157896d82b37b59724237d11aff64', 'type': 'magnet', 'imdbid': 'tt0068646', 'status': 'Available', 'score': 700, 'downloadid': None, 'freeleech': 0, 'download_client': None, 'date_found': '2019-09-23', 'resolution': 'BluRay-720P'}, {'title': 'The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON', 'seeders': 5, 'size': 11796393300, 'pubdate': None, 'indexer': 'Rarbg', 'info_link': 'https://torrentapi.org/redirect_to_info.php?token=h1eai7vxuk&p=1_0_8_4_8_5_4__106f21738c', 'torrentfile': 'magnet:?xt=urn:btih:106f21738c6d4cc67341a3f3701c13d7cc4a3bc6&dn=The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON&tr=http%3A%2F%2Ftracker.trackerfix.com%3A80%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710&tr=udp%3A%2F%2F9.rarbg.to%3A2710&tr=udp%3A%2F%2Fopen.demonii.com%3A1337%2Fannounce', 'guid': '106f21738c6d4cc67341a3f3701c13d7cc4a3bc6', 'type': 'magnet', 'imdbid': 'tt0068646', 'status': 'Snatched', 'score': 740, 'downloadid': '106f21738c6d4cc67341a3f3701c13d7cc4a3bc6', 'freeleech': 0, 'download_client': 'Transmission', 'date_found': '2019-09-23', 'resolution': 'BluRay-1080P'}]] DEBUG [2019-09-23 11:08:40,067] core.sqldb.write_search_results.210: Writing batch into SEARCHRESULTS. DEBUG [2019-09-23 11:08:40,063] core.sqldb.execute.156: Executing SQL command: ['DELETE FROM SEARCHRESULTS WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:40,063] core.sqldb.purge_search_results.524: Purging search results for tt0068646 INFO [2019-09-23 11:08:40,062] core.searcher.store_results.317: Storing backlog search results -- purging existing results before writing to database. INFO [2019-09-23 11:08:40,062] core.searcher.store_results.307: 2 results found for tt0068646. Storing results. DEBUG [2019-09-23 11:08:40,061] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MARKEDRESULTS WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:40,061] core.sqldb.get_marked_results.451: Retrieving Marked Results for tt0068646. INFO [2019-09-23 11:08:40,061] core.searchresults.score.101: Finished scoring releases. INFO [2019-09-23 11:08:40,060] core.searchresults.fuzzy_title.349: Keeping 2 releases. DEBUG [2019-09-23 11:08:40,060] core.searchresults.fuzzy_title.347: The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team best title match was 25%, removing search result. DEBUG [2019-09-23 11:08:40,059] core.searchresults.fuzzy_title.341: Comparing release substring The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,059] core.searchresults.fuzzy_title.347: The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR best title match was 45%, removing search result. DEBUG [2019-09-23 11:08:40,058] core.searchresults.fuzzy_title.341: Comparing release substring The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,058] core.searchresults.fuzzy_title.347: The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE best title match was 25%, removing search result. DEBUG [2019-09-23 11:08:40,057] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,057] core.searchresults.fuzzy_title.347: The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP best title match was 25%, removing search result. DEBUG [2019-09-23 11:08:40,056] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,056] core.searchresults.fuzzy_title.347: Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual best title match was 0%, removing search result. DEBUG [2019-09-23 11:08:40,055] core.searchresults.fuzzy_title.341: Comparing release substring Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,055] core.searchresults.fuzzy_title.347: The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] best title match was 40%, removing search result. DEBUG [2019-09-23 11:08:40,054] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,053] core.searchresults.fuzzy_title.347: The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG best title match was 18%, removing search result. DEBUG [2019-09-23 11:08:40,052] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,052] core.searchresults.fuzzy_title.347: The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 best title match was 23%, removing search result. DEBUG [2019-09-23 11:08:40,051] core.searchresults.fuzzy_title.341: Comparing release substring The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,050] core.searchresults.fuzzy_title.347: The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous best title match was 30%, removing search result. DEBUG [2019-09-23 11:08:40,049] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,049] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.Part.I. with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:40,048] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather. with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. INFO [2019-09-23 11:08:40,048] core.searchresults.fuzzy_title.312: Checking title match. INFO [2019-09-23 11:08:40,048] core.searchresults.score_sources.440: Keeping 11 releases. DEBUG [2019-09-23 11:08:40,047] core.searchresults.score_sources.432: Removing the godfather 1972.Bluray.1080p.YTS, size 2576.980378 not in range 4000-20000. DEBUG [2019-09-23 11:08:40,047] core.searchresults.score_sources.429: the godfather 1972.Bluray.1080p.YTS matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,047] core.searchresults.score_sources.411: Scoring and filtering the godfather 1972.Bluray.1080p.YTS based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,046] core.searchresults.score_sources.432: Removing the godfather 1972.Bluray.720p.YTS, size 1288.490189 not in range 2000-10000. DEBUG [2019-09-23 11:08:40,046] core.searchresults.score_sources.429: the godfather 1972.Bluray.720p.YTS matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:40,046] core.searchresults.score_sources.411: Scoring and filtering the godfather 1972.Bluray.720p.YTS based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:40,046] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy BRRip (Eng-Hindi) by Kishan H based on resolution BluRay-SD. DEBUG [2019-09-23 11:08:40,045] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1.1972.HD.x264~PlutO~ based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:40,045] core.searchresults.score_sources.411: Scoring and filtering THE-GODFATHER.Part.1.DVDrip[vice] based on resolution DVD-SD. DEBUG [2019-09-23 11:08:40,045] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy BRRip XviD AC3-ViSiON BOZX based on resolution BluRay-SD. DEBUG [2019-09-23 11:08:40,044] core.searchresults.score_sources.411: Scoring and filtering Godfather 1 (1972) - DvDrip Xvid - Omifast Greek based on resolution DVD-SD. DEBUG [2019-09-23 11:08:40,044] core.searchresults.score_sources.411: Scoring and filtering [cdesade]The.Godfather.Collection.(Disc.1).iso based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:40,044] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:40,044] core.searchresults.score_sources.411: Scoring and filtering The Godfather 1972 DVD5 NTSC based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:40,043] core.searchresults.score_sources.432: Removing The.Godfather.1972.1080p.BluRay.x264-FGT, size 21442.62422528 not in range 4000-20000. DEBUG [2019-09-23 11:08:40,043] core.searchresults.score_sources.429: The.Godfather.1972.1080p.BluRay.x264-FGT matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,043] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.BluRay.x264-FGT based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,042] core.searchresults.score_sources.429: The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:40,042] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:40,042] core.searchresults.score_sources.429: The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,041] core.searchresults.score_sources.411: Scoring and filtering The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,041] core.searchresults.score_sources.429: The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,041] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,040] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Collection.Coppola.Restoration.Complete.Bluray.108 based on resolution BluRay-SD. DEBUG [2019-09-23 11:08:40,040] core.searchresults.score_sources.429: The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,040] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,039] core.searchresults.score_sources.432: Removing The Godfather Trilogy 1080p BluRay DTS x264-ESiR(No Rars), size 64939.90551552 not in range 4000-20000. DEBUG [2019-09-23 11:08:40,039] core.searchresults.score_sources.429: The Godfather Trilogy 1080p BluRay DTS x264-ESiR(No Rars) matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,039] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy 1080p BluRay DTS x264-ESiR(No Rars) based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,038] core.searchresults.score_sources.429: Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,038] core.searchresults.score_sources.411: Scoring and filtering Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,038] core.searchresults.score_sources.429: The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,037] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,037] core.searchresults.score_sources.411: Scoring and filtering Il padrino (1972) Doppiaggio storico, [H264 - Ita Mp3]TNT Villag based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:40,037] core.searchresults.score_sources.432: Removing The Godfather Part I (1972) 720p BrRip x264 - 900MB - YIFY, size 945.6058367999999 not in range 2000-10000. DEBUG [2019-09-23 11:08:40,036] core.searchresults.score_sources.429: The Godfather Part I (1972) 720p BrRip x264 - 900MB - YIFY matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:40,036] core.searchresults.score_sources.411: Scoring and filtering The Godfather Part I (1972) 720p BrRip x264 - 900MB - YIFY based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:40,036] core.searchresults.score_sources.429: The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,035] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,035] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy Part 1, 2 %26 3 DVDRip based on resolution DVD-SD. DEBUG [2019-09-23 11:08:40,035] core.searchresults.score_sources.411: Scoring and filtering Saga %26quot;El Padrino%26quot; - Ingles y Espa%26ntilde;ol Latino - 1 based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:40,035] core.searchresults.score_sources.429: The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:40,034] core.searchresults.score_sources.411: Scoring and filtering The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:40,034] core.searchresults.score_sources.432: Removing O Poderoso Chefao (1972) BDRip 720p dublado - derew, size 1503.2385536 not in range 2000-10000. DEBUG [2019-09-23 11:08:40,034] core.searchresults.score_sources.429: O Poderoso Chefao (1972) BDRip 720p dublado - derew matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:40,033] core.searchresults.score_sources.411: Scoring and filtering O Poderoso Chefao (1972) BDRip 720p dublado - derew based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:40,033] core.searchresults.score_sources.429: The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,033] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,032] core.searchresults.score_sources.432: Removing The Godfather (1972) 720p BrRip x264 - YIFY, size 1288.4901888 not in range 2000-10000. DEBUG [2019-09-23 11:08:40,032] core.searchresults.score_sources.429: The Godfather (1972) 720p BrRip x264 - YIFY matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:40,032] core.searchresults.score_sources.411: Scoring and filtering The Godfather (1972) 720p BrRip x264 - YIFY based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:40,031] core.searchresults.score_sources.432: Removing The Godfather (1972) 1080p BrRip x264 - YIFY, size 2576.9803776 not in range 4000-20000. DEBUG [2019-09-23 11:08:40,031] core.searchresults.score_sources.429: The Godfather (1972) 1080p BrRip x264 - YIFY matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,031] core.searchresults.score_sources.411: Scoring and filtering The Godfather (1972) 1080p BrRip x264 - YIFY based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,031] core.searchresults.score_sources.432: Removing The.Godfather.1972.1080p.EUR.BluRay.AVC.TrueHD.5.1-FGT, size 47903.083417 not in range 4000-20000. DEBUG [2019-09-23 11:08:40,030] core.searchresults.score_sources.429: The.Godfather.1972.1080p.EUR.BluRay.AVC.TrueHD.5.1-FGT matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,030] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.EUR.BluRay.AVC.TrueHD.5.1-FGT based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,030] core.searchresults.score_sources.432: Removing The.Godfather.1972.The.Coppola.Restoration.1080p.BluRay.x264.DTS-FGT, size 21439.663614 not in range 4000-20000. DEBUG [2019-09-23 11:08:40,029] core.searchresults.score_sources.429: The.Godfather.1972.The.Coppola.Restoration.1080p.BluRay.x264.DTS-FGT matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,029] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.The.Coppola.Restoration.1080p.BluRay.x264.DTS-FGT based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,029] core.searchresults.score_sources.429: The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,028] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,028] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.iNTERNAL.BDRip.x264-LiBRARiANS based on resolution BluRay-SD. DEBUG [2019-09-23 11:08:40,028] core.searchresults.score_sources.432: Removing The.Godfather.1972.iNTERNAL.1080p.BluRay.x264-LiBRARiANS, size 21512.166276 not in range 4000-20000. DEBUG [2019-09-23 11:08:40,027] core.searchresults.score_sources.429: The.Godfather.1972.iNTERNAL.1080p.BluRay.x264-LiBRARiANS matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,027] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.iNTERNAL.1080p.BluRay.x264-LiBRARiANS based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,027] core.searchresults.score_sources.429: The.Godfather.1972.720p.BluRay.H264.AAC-RARBG matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:40,027] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.720p.BluRay.H264.AAC-RARBG based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:40,026] core.searchresults.score_sources.432: Removing The.Godfather.1972.1080p.BluRay.H264.AAC-RARBG, size 3625.876719 not in range 4000-20000. DEBUG [2019-09-23 11:08:40,026] core.searchresults.score_sources.429: The.Godfather.1972.1080p.BluRay.H264.AAC-RARBG matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:40,026] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.BluRay.H264.AAC-RARBG based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:40,025] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.BRRip.XviD.MP3-XVID based on resolution BluRay-SD. INFO [2019-09-23 11:08:40,025] core.searchresults.score_sources.403: Filtering resolution and size requirements. INFO [2019-09-23 11:08:40,024] core.searchresults.freeleech.247: Checking torrent Freeleech info. INFO [2019-09-23 11:08:40,024] core.searchresults.seed_check.237: Keeping 37 releases. DEBUG [2019-09-23 11:08:40,024] core.searchresults.seed_check.233: The.Godfather.1972.iNTERNAL.720p.BluRay.x264-LiBRARiANS has 0 seeds, removing search result. INFO [2019-09-23 11:08:40,024] core.searchresults.seed_check.226: Checking torrent seeds. INFO [2019-09-23 11:08:40,023] core.searchresults.remove_ignored.147: Keeping 38 releases. DEBUG [2019-09-23 11:08:40,023] core.searchresults.remove_ignored.141: ['subs'] found in The Godfather 1972 720p BRRip x264 GREEK SUBS, removing from releases. INFO [2019-09-23 11:08:40,022] core.searchresults.remove_ignored.133: Filtering Ignored Words. DEBUG [2019-09-23 11:08:40,022] core.searchresults.reset.112: Resetting release scores to 0. DEBUG [2019-09-23 11:08:40,021] core.searchresults.score.56: Scoring based on quality profile Default DEBUG [2019-09-23 11:08:40,020] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MOVIES WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:40,019] core.sqldb.get_movie_details.391: Retrieving details for movie tt0068646. INFO [2019-09-23 11:08:40,019] core.searchresults.score.38: Scoring 39 releases. INFO [2019-09-23 11:08:40,019] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,018] core.searcher.get_source.340: Determining source media for the godfather 1972.Bluray.1080p.YTS INFO [2019-09-23 11:08:40,018] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:40,018] core.searcher.get_source.340: Determining source media for the godfather 1972.Bluray.720p.YTS INFO [2019-09-23 11:08:40,018] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:40,017] core.searcher.get_source.340: Determining source media for The Godfather Trilogy BRRip (Eng-Hindi) by Kishan H INFO [2019-09-23 11:08:40,017] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:40,017] core.searcher.get_source.340: Determining source media for The.Godfather.1.1972.HD.x264~PlutO~ INFO [2019-09-23 11:08:40,016] core.searcher.get_source.359: Source media determined as DVD-SD INFO [2019-09-23 11:08:40,016] core.searcher.get_source.340: Determining source media for THE-GODFATHER.Part.1.DVDrip[vice] INFO [2019-09-23 11:08:40,016] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:40,015] core.searcher.get_source.340: Determining source media for The Godfather Trilogy BRRip XviD AC3-ViSiON BOZX INFO [2019-09-23 11:08:40,015] core.searcher.get_source.359: Source media determined as DVD-SD INFO [2019-09-23 11:08:40,015] core.searcher.get_source.340: Determining source media for Godfather 1 (1972) - DvDrip Xvid - Omifast Greek INFO [2019-09-23 11:08:40,014] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:40,014] core.searcher.get_source.340: Determining source media for [cdesade]The.Godfather.Collection.(Disc.1).iso INFO [2019-09-23 11:08:40,014] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:40,013] core.searcher.get_source.340: Determining source media for The Godfather Trilogy INFO [2019-09-23 11:08:40,013] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:40,013] core.searcher.get_source.340: Determining source media for The Godfather 1972 DVD5 NTSC INFO [2019-09-23 11:08:40,012] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,012] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.BluRay.x264-FGT INFO [2019-09-23 11:08:40,012] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:40,011] core.searcher.get_source.340: Determining source media for The Godfather 1972 720p BRRip x264 GREEK SUBS INFO [2019-09-23 11:08:40,011] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:40,011] core.searcher.get_source.340: Determining source media for The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team INFO [2019-09-23 11:08:40,010] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,010] core.searcher.get_source.340: Determining source media for The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR INFO [2019-09-23 11:08:40,010] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,009] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE INFO [2019-09-23 11:08:40,009] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:40,009] core.searcher.get_source.340: Determining source media for The.Godfather.Collection.Coppola.Restoration.Complete.Bluray.108 INFO [2019-09-23 11:08:40,008] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,008] core.searcher.get_source.340: Determining source media for The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP INFO [2019-09-23 11:08:40,008] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,007] core.searcher.get_source.340: Determining source media for The Godfather Trilogy 1080p BluRay DTS x264-ESiR(No Rars) INFO [2019-09-23 11:08:40,007] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,007] core.searcher.get_source.340: Determining source media for Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual INFO [2019-09-23 11:08:40,007] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,006] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] INFO [2019-09-23 11:08:40,006] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:40,006] core.searcher.get_source.340: Determining source media for Il padrino (1972) Doppiaggio storico, [H264 - Ita Mp3]TNT Villag INFO [2019-09-23 11:08:40,005] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:40,005] core.searcher.get_source.340: Determining source media for The Godfather Part I (1972) 720p BrRip x264 - 900MB - YIFY INFO [2019-09-23 11:08:40,005] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,004] core.searcher.get_source.340: Determining source media for The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG INFO [2019-09-23 11:08:40,004] core.searcher.get_source.359: Source media determined as DVD-SD INFO [2019-09-23 11:08:40,004] core.searcher.get_source.340: Determining source media for The Godfather Trilogy Part 1, 2 %26 3 DVDRip INFO [2019-09-23 11:08:40,003] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:40,003] core.searcher.get_source.340: Determining source media for Saga %26quot;El Padrino%26quot; - Ingles y Espa%26ntilde;ol Latino - 1 INFO [2019-09-23 11:08:40,003] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:40,002] core.searcher.get_source.340: Determining source media for The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 INFO [2019-09-23 11:08:40,002] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:40,002] core.searcher.get_source.340: Determining source media for O Poderoso Chefao (1972) BDRip 720p dublado - derew INFO [2019-09-23 11:08:40,001] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,001] core.searcher.get_source.340: Determining source media for The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous INFO [2019-09-23 11:08:40,001] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:40,000] core.searcher.get_source.340: Determining source media for The Godfather (1972) 720p BrRip x264 - YIFY INFO [2019-09-23 11:08:40,000] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:40,000] core.searcher.get_source.340: Determining source media for The Godfather (1972) 1080p BrRip x264 - YIFY INFO [2019-09-23 11:08:39,999] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:39,999] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.EUR.BluRay.AVC.TrueHD.5.1-FGT INFO [2019-09-23 11:08:39,999] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:39,998] core.searcher.get_source.340: Determining source media for The.Godfather.1972.The.Coppola.Restoration.1080p.BluRay.x264.DTS-FGT INFO [2019-09-23 11:08:39,998] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:39,998] core.searcher.get_source.340: Determining source media for The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON INFO [2019-09-23 11:08:39,997] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:39,997] core.searcher.get_source.340: Determining source media for The.Godfather.1972.iNTERNAL.720p.BluRay.x264-LiBRARiANS INFO [2019-09-23 11:08:39,997] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:39,996] core.searcher.get_source.340: Determining source media for The.Godfather.1972.iNTERNAL.BDRip.x264-LiBRARiANS INFO [2019-09-23 11:08:39,996] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:39,996] core.searcher.get_source.340: Determining source media for The.Godfather.1972.iNTERNAL.1080p.BluRay.x264-LiBRARiANS INFO [2019-09-23 11:08:39,995] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:39,995] core.searcher.get_source.340: Determining source media for The.Godfather.1972.720p.BluRay.H264.AAC-RARBG INFO [2019-09-23 11:08:39,995] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:39,994] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.BluRay.H264.AAC-RARBG INFO [2019-09-23 11:08:39,994] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:39,993] core.searcher.get_source.340: Determining source media for The.Godfather.1972.BRRip.XviD.MP3-XVID INFO [2019-09-23 11:08:39,992] core.searcher.remove_inactive.271: Filtering releases based on enabled newznab indexers. DEBUG [2019-09-23 11:08:39,988] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM SEARCHRESULTS WHERE imdbid="tt0068646" ORDER BY score DESC , CASE type WHEN "nzb" THEN 0\n WHEN "torrent" THEN 1\n WHEN "magnet" THEN 1\n END DESC\n , size DESC, freeleech DESC'] DEBUG [2019-09-23 11:08:39,988] core.sqldb.get_search_results.419: Retrieving Search Results for tt0068646. INFO [2019-09-23 11:08:39,987] core.providers.torrent_modules.yts._parse.92: Found 2 results from YTS INFO [2019-09-23 11:08:39,983] core.providers.torrent_modules.yts._parse.63: Parsing 2 YTS results. INFO [2019-09-23 11:08:39,084] core.providers.torrent_modules.yts.search.13: Performing backlog search on YTS for tt0068646. INFO [2019-09-23 11:08:39,084] root._parse.101: Found 28 results from ThePirateBay. INFO [2019-09-23 11:08:39,081] root._parse.57: Parsing ThePirateBay results. INFO [2019-09-23 11:08:36,233] root.search.10: Performing backlog search on ThePirateBay for tt0068646. INFO [2019-09-23 11:08:36,232] core.providers.torrent_modules.rarbg._parse.166: Found 9 results from INFO [2019-09-23 11:08:36,232] core.providers.torrent_modules.rarbg._parse.143: Parsing 9 Rarbg results. INFO [2019-09-23 11:08:36,028] core.providers.torrent_modules.rarbg.search.49: Performing backlog search on Rarbg for tt0068646. INFO [2019-09-23 11:08:36,028] core.searcher.search.120: Performing backlog search for The Godfather 1972. DEBUG [2019-09-23 11:08:36,026] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MOVIES WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:36,026] core.sqldb.get_movie_details.391: Retrieving details for movie tt0068646. INFO [2019-09-23 11:08:36,026] core.ajax.search.220: Starting user-requested backlog search for tt0068646 DEBUG [2019-09-23 11:08:33,679] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM SEARCHRESULTS WHERE imdbid="tt0068646" ORDER BY score DESC , CASE type WHEN "nzb" THEN 0\n WHEN "torrent" THEN 1\n WHEN "magnet" THEN 1\n END DESC\n , size DESC, freeleech DESC'] DEBUG [2019-09-23 11:08:33,678] core.sqldb.get_search_results.419: Retrieving Search Results for tt0068646. DEBUG [2019-09-23 11:08:31,622] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MOVIES WHERE status NOT IN ("Finished", "Disabled") ORDER BY sort_title ASC LIMIT 50 OFFSET 50'] DEBUG [2019-09-23 11:08:31,622] core.sqldb.get_user_movies.327: Retrieving list of user's movies. DEBUG [2019-09-23 11:08:13,804] core.sqldb.execute.156: Executing SQL command: ['UPDATE MOVIES SET status=? WHERE imdbid=?', ('Snatched', 'tt0068646')] DEBUG [2019-09-23 11:08:13,803] core.sqldb.update.235: Updating status to Snatched for rows that match imdbid:tt0068646 in MOVIES. INFO [2019-09-23 11:08:13,803] core.library.movie_status.1053: Setting MOVIES tt0068646 status to Snatched. DEBUG [2019-09-23 11:08:13,800] core.sqldb.execute.156: Executing SQL command: ['SELECT DISTINCT status FROM SEARCHRESULTS WHERE imdbid="tt0068646" AND type IN ("import", "torrent", "magnet")'] DEBUG [2019-09-23 11:08:13,798] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MOVIES WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:13,798] core.sqldb.get_movie_details.391: Retrieving details for movie tt0068646. INFO [2019-09-23 11:08:13,798] core.library.movie_status.1016: Determining appropriate status for movie tt0068646. INFO [2019-09-23 11:08:13,798] core.library.markedresults.996: Successfully created entry in MARKEDRESULTS for 106f21738c6d4cc67341a3f3701c13d7cc4a3bc6. DEBUG [2019-09-23 11:08:13,796] core.sqldb.execute.156: Executing SQL command: ['INSERT INTO MARKEDRESULTS ( imdbid, guid, status ) VALUES ( ?, ?, ? )', ['tt0068646', '106f21738c6d4cc67341a3f3701c13d7cc4a3bc6', 'Snatched']] DEBUG [2019-09-23 11:08:13,796] core.sqldb.write.183: Writing data to MARKEDRESULTS. INFO [2019-09-23 11:08:13,795] core.library.markedresults.989: Guid 106f21738c6d4cc67341a3f3701c13d7cc4a3bc6 not found in MARKEDRESULTS, creating entry. DEBUG [2019-09-23 11:08:13,794] core.sqldb.execute.156: Executing SQL command: ['SELECT 1 FROM MARKEDRESULTS WHERE guid="106f21738c6d4cc67341a3f3701c13d7cc4a3bc6"'] DEBUG [2019-09-23 11:08:13,793] core.sqldb.row_exists.580: Checking if guid="106f21738c6d4cc67341a3f3701c13d7cc4a3bc6" exists in database table MARKEDRESULTS INFO [2019-09-23 11:08:13,793] core.library.searchresults.938: Successfully marked 106f21738c6d4cc67341a3f3701c13d7cc4a3bc6 as Snatched in SEARCHRESULTS. DEBUG [2019-09-23 11:08:13,788] core.sqldb.execute.156: Executing SQL command: ['UPDATE SEARCHRESULTS SET status=? WHERE guid=?', ('Snatched', '106f21738c6d4cc67341a3f3701c13d7cc4a3bc6')] DEBUG [2019-09-23 11:08:13,788] core.sqldb.update.235: Updating status to Snatched for rows that match guid:106f21738c6d4cc67341a3f3701c13d7cc4a3bc6 in SEARCHRESULTS. INFO [2019-09-23 11:08:13,787] core.library.searchresults.933: Marking 106f21738c6d4cc67341a3f3701c13d7cc4a3bc6 as Snatched in SEARCHRESULTS. DEBUG [2019-09-23 11:08:13,784] core.sqldb.execute.156: Executing SQL command: ['SELECT 1 FROM SEARCHRESULTS WHERE guid="106f21738c6d4cc67341a3f3701c13d7cc4a3bc6"'] DEBUG [2019-09-23 11:08:13,783] core.sqldb.row_exists.580: Checking if guid="106f21738c6d4cc67341a3f3701c13d7cc4a3bc6" exists in database table SEARCHRESULTS INFO [2019-09-23 11:08:13,783] core.library.searchresults.928: Marking guid 106f21738c6d4cc67341a3f3701c13d7cc4a3bc6 as Snatched. INFO [2019-09-23 11:08:13,783] core.snatcher.update_status_snatched.278: Updating tt0068646 to Snatched. DEBUG [2019-09-23 11:08:13,739] core.sqldb.execute.156: Executing SQL command: ['UPDATE SEARCHRESULTS SET downloadid=?,download_client=? WHERE guid=?', ('106f21738c6d4cc67341a3f3701c13d7cc4a3bc6', 'Transmission', '106f21738c6d4cc67341a3f3701c13d7cc4a3bc6')] DEBUG [2019-09-23 11:08:13,738] core.sqldb.update_multiple_values.258: Updating guid:106f21738c6d4cc67341a3f3701c13d7cc4a3bc6 to {'downloadid': '106f21738c6d4cc67341a3f3701c13d7cc4a3bc6', 'download_client': 'Transmission'} in SEARCHRESULTS. INFO [2019-09-23 11:08:13,738] core.snatcher.snatch_torrent.254: Successfully sent The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON to Transmission. INFO [2019-09-23 11:08:13,737] core.downloaders.Transmission.add_torrent.85: Torrent sent to TransmissionRPC - downloadid 106f21738c6d4cc67341a3f3701c13d7cc4a3bc6 INFO [2019-09-23 11:08:13,705] core.downloaders.Transmission.add_torrent.49: Sending torrent The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON to Transmission. INFO [2019-09-23 11:08:13,705] core.snatcher.snatch_torrent.249: Sending magnet to Transmission INFO [2019-09-23 11:08:13,704] core.snatcher.download.162: Sending The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON to download client. INFO [2019-09-23 11:08:13,704] core.snatcher.get_best_release.139: The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON is best available result for The Godfather DEBUG [2019-09-23 11:08:13,701] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM SEARCHRESULTS WHERE imdbid="tt0068646" ORDER BY score DESC , CASE type WHEN "nzb" THEN 0\n WHEN "torrent" THEN 1\n WHEN "magnet" THEN 1\n END DESC\n , size DESC, freeleech DESC'] DEBUG [2019-09-23 11:08:13,700] core.sqldb.get_search_results.419: Retrieving Search Results for tt0068646. INFO [2019-09-23 11:08:13,700] core.snatcher.get_best_release.89: Selecting best release for The Godfather DEBUG [2019-09-23 11:08:13,698] core.sqldb.execute.156: Executing SQL command: ['UPDATE MOVIES SET backlog=? WHERE imdbid=?', ('1', 'tt0068646')] DEBUG [2019-09-23 11:08:13,698] core.sqldb.update.235: Updating backlog to 1 for rows that match imdbid:tt0068646 in MOVIES. DEBUG [2019-09-23 11:08:13,696] core.sqldb.execute.156: Executing SQL command: ['UPDATE MOVIES SET status=? WHERE imdbid=?', ('Found', 'tt0068646')] DEBUG [2019-09-23 11:08:13,695] core.sqldb.update.235: Updating status to Found for rows that match imdbid:tt0068646 in MOVIES. INFO [2019-09-23 11:08:13,695] core.library.movie_status.1053: Setting MOVIES tt0068646 status to Found. DEBUG [2019-09-23 11:08:13,691] core.sqldb.execute.156: Executing SQL command: ['SELECT DISTINCT status FROM SEARCHRESULTS WHERE imdbid="tt0068646" AND type IN ("import", "torrent", "magnet")'] DEBUG [2019-09-23 11:08:13,690] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MOVIES WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:13,690] core.sqldb.get_movie_details.391: Retrieving details for movie tt0068646. INFO [2019-09-23 11:08:13,690] core.library.movie_status.1016: Determining appropriate status for movie tt0068646. DEBUG [2019-09-23 11:08:13,687] core.sqldb.execute.156: Executing SQL command: [<sqlalchemy.sql.dml.Insert object at 0x105401950>, [{'title': 'The.Godfather.1972.720p.BluRay.H264.AAC-RARBG', 'seeders': 3, 'size': 2297645621, 'pubdate': None, 'indexer': 'Rarbg', 'info_link': 'https://torrentapi.org/redirect_to_info.php?token=h1eai7vxuk&p=1_7_1_9_8_7_6__325bb75c5e', 'torrentfile': 'magnet:?xt=urn:btih:325bb75c5ed157896d82b37b59724237d11aff64&dn=The.Godfather.1972.720p.BluRay.H264.AAC-RARBG&tr=http%3A%2F%2Ftracker.trackerfix.com%3A80%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710&tr=udp%3A%2F%2F9.rarbg.to%3A2710&tr=udp%3A%2F%2Fopen.demonii.com%3A1337%2Fannounce', 'guid': '325bb75c5ed157896d82b37b59724237d11aff64', 'type': 'magnet', 'imdbid': 'tt0068646', 'status': 'Available', 'score': 700, 'downloadid': None, 'freeleech': 0, 'download_client': None, 'resolution': 'BluRay-720P', 'date_found': datetime.date(2019, 9, 23)}, {'title': 'The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON', 'seeders': 5, 'size': 11796393300, 'pubdate': None, 'indexer': 'Rarbg', 'info_link': 'https://torrentapi.org/redirect_to_info.php?token=h1eai7vxuk&p=1_0_8_4_8_5_4__106f21738c', 'torrentfile': 'magnet:?xt=urn:btih:106f21738c6d4cc67341a3f3701c13d7cc4a3bc6&dn=The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON&tr=http%3A%2F%2Ftracker.trackerfix.com%3A80%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710&tr=udp%3A%2F%2F9.rarbg.to%3A2710&tr=udp%3A%2F%2Fopen.demonii.com%3A1337%2Fannounce', 'guid': '106f21738c6d4cc67341a3f3701c13d7cc4a3bc6', 'type': 'magnet', 'imdbid': 'tt0068646', 'status': 'Available', 'score': 740, 'downloadid': None, 'freeleech': 0, 'download_client': None, 'resolution': 'BluRay-1080P', 'date_found': datetime.date(2019, 9, 23)}]] DEBUG [2019-09-23 11:08:13,686] core.sqldb.write_search_results.210: Writing batch into SEARCHRESULTS. DEBUG [2019-09-23 11:08:13,683] core.sqldb.execute.156: Executing SQL command: ['DELETE FROM SEARCHRESULTS WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:13,683] core.sqldb.purge_search_results.524: Purging search results for tt0068646 INFO [2019-09-23 11:08:13,682] core.searcher.store_results.317: Storing backlog search results -- purging existing results before writing to database. INFO [2019-09-23 11:08:13,682] core.searcher.store_results.307: 2 results found for tt0068646. Storing results. DEBUG [2019-09-23 11:08:13,681] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MARKEDRESULTS WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:13,681] core.sqldb.get_marked_results.451: Retrieving Marked Results for tt0068646. INFO [2019-09-23 11:08:13,681] core.searchresults.score.101: Finished scoring releases. INFO [2019-09-23 11:08:13,680] core.searchresults.fuzzy_title.349: Keeping 2 releases. DEBUG [2019-09-23 11:08:13,680] core.searchresults.fuzzy_title.347: The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team best title match was 25%, removing search result. DEBUG [2019-09-23 11:08:13,679] core.searchresults.fuzzy_title.341: Comparing release substring The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,679] core.searchresults.fuzzy_title.347: The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR best title match was 45%, removing search result. DEBUG [2019-09-23 11:08:13,678] core.searchresults.fuzzy_title.341: Comparing release substring The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,678] core.searchresults.fuzzy_title.347: The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE best title match was 25%, removing search result. DEBUG [2019-09-23 11:08:13,678] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,677] core.searchresults.fuzzy_title.347: The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP best title match was 25%, removing search result. DEBUG [2019-09-23 11:08:13,677] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,676] core.searchresults.fuzzy_title.347: Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual best title match was 0%, removing search result. DEBUG [2019-09-23 11:08:13,676] core.searchresults.fuzzy_title.341: Comparing release substring Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,675] core.searchresults.fuzzy_title.347: The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] best title match was 40%, removing search result. DEBUG [2019-09-23 11:08:13,674] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,673] core.searchresults.fuzzy_title.347: The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG best title match was 18%, removing search result. DEBUG [2019-09-23 11:08:13,672] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,671] core.searchresults.fuzzy_title.347: The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 best title match was 23%, removing search result. DEBUG [2019-09-23 11:08:13,670] core.searchresults.fuzzy_title.341: Comparing release substring The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,670] core.searchresults.fuzzy_title.347: The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous best title match was 30%, removing search result. DEBUG [2019-09-23 11:08:13,669] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,669] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather.Part.I. with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. DEBUG [2019-09-23 11:08:13,668] core.searchresults.fuzzy_title.341: Comparing release substring The.Godfather. with titles ['The Godfather', 'The Godfather Part I', 'The Godfather Part 1', "Mario Puzo's The Godfather", 'The Godfather: The Coppola Restoration', 'The Godfather: Part I', 'The Godfather 1', 'Godfather', ' The', 'The Godfather', ' Part 1', 'Godfather', ' the 01 Godfather', ' The']. INFO [2019-09-23 11:08:13,668] core.searchresults.fuzzy_title.312: Checking title match. INFO [2019-09-23 11:08:13,667] core.searchresults.score_sources.440: Keeping 11 releases. DEBUG [2019-09-23 11:08:13,667] core.searchresults.score_sources.432: Removing the godfather 1972.Bluray.1080p.YTS, size 2576.980378 not in range 4000-20000. DEBUG [2019-09-23 11:08:13,667] core.searchresults.score_sources.429: the godfather 1972.Bluray.1080p.YTS matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,667] core.searchresults.score_sources.411: Scoring and filtering the godfather 1972.Bluray.1080p.YTS based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,666] core.searchresults.score_sources.432: Removing the godfather 1972.Bluray.720p.YTS, size 1288.490189 not in range 2000-10000. DEBUG [2019-09-23 11:08:13,666] core.searchresults.score_sources.429: the godfather 1972.Bluray.720p.YTS matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:13,666] core.searchresults.score_sources.411: Scoring and filtering the godfather 1972.Bluray.720p.YTS based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:13,665] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy BRRip (Eng-Hindi) by Kishan H based on resolution BluRay-SD. DEBUG [2019-09-23 11:08:13,665] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1.1972.HD.x264~PlutO~ based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:13,665] core.searchresults.score_sources.411: Scoring and filtering THE-GODFATHER.Part.1.DVDrip[vice] based on resolution DVD-SD. DEBUG [2019-09-23 11:08:13,665] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy BRRip XviD AC3-ViSiON BOZX based on resolution BluRay-SD. DEBUG [2019-09-23 11:08:13,664] core.searchresults.score_sources.411: Scoring and filtering Godfather 1 (1972) - DvDrip Xvid - Omifast Greek based on resolution DVD-SD. DEBUG [2019-09-23 11:08:13,664] core.searchresults.score_sources.411: Scoring and filtering [cdesade]The.Godfather.Collection.(Disc.1).iso based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:13,664] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:13,664] core.searchresults.score_sources.411: Scoring and filtering The Godfather 1972 DVD5 NTSC based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:13,663] core.searchresults.score_sources.432: Removing The.Godfather.1972.1080p.BluRay.x264-FGT, size 21442.62422528 not in range 4000-20000. DEBUG [2019-09-23 11:08:13,663] core.searchresults.score_sources.429: The.Godfather.1972.1080p.BluRay.x264-FGT matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,663] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.BluRay.x264-FGT based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,662] core.searchresults.score_sources.429: The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:13,662] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:13,662] core.searchresults.score_sources.429: The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,662] core.searchresults.score_sources.411: Scoring and filtering The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,661] core.searchresults.score_sources.429: The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,661] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,661] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Collection.Coppola.Restoration.Complete.Bluray.108 based on resolution BluRay-SD. DEBUG [2019-09-23 11:08:13,660] core.searchresults.score_sources.429: The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,660] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,660] core.searchresults.score_sources.432: Removing The Godfather Trilogy 1080p BluRay DTS x264-ESiR(No Rars), size 64939.90551552 not in range 4000-20000. DEBUG [2019-09-23 11:08:13,659] core.searchresults.score_sources.429: The Godfather Trilogy 1080p BluRay DTS x264-ESiR(No Rars) matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,659] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy 1080p BluRay DTS x264-ESiR(No Rars) based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,659] core.searchresults.score_sources.429: Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,659] core.searchresults.score_sources.411: Scoring and filtering Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,658] core.searchresults.score_sources.429: The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,658] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,658] core.searchresults.score_sources.411: Scoring and filtering Il padrino (1972) Doppiaggio storico, [H264 - Ita Mp3]TNT Villag based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:13,657] core.searchresults.score_sources.432: Removing The Godfather Part I (1972) 720p BrRip x264 - 900MB - YIFY, size 945.6058367999999 not in range 2000-10000. DEBUG [2019-09-23 11:08:13,657] core.searchresults.score_sources.429: The Godfather Part I (1972) 720p BrRip x264 - 900MB - YIFY matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:13,657] core.searchresults.score_sources.411: Scoring and filtering The Godfather Part I (1972) 720p BrRip x264 - 900MB - YIFY based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:13,656] core.searchresults.score_sources.429: The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,656] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,656] core.searchresults.score_sources.411: Scoring and filtering The Godfather Trilogy Part 1, 2 %26 3 DVDRip based on resolution DVD-SD. DEBUG [2019-09-23 11:08:13,656] core.searchresults.score_sources.411: Scoring and filtering Saga %26quot;El Padrino%26quot; - Ingles y Espa%26ntilde;ol Latino - 1 based on resolution Unknown-SD. DEBUG [2019-09-23 11:08:13,655] core.searchresults.score_sources.429: The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:13,655] core.searchresults.score_sources.411: Scoring and filtering The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:13,655] core.searchresults.score_sources.432: Removing O Poderoso Chefao (1972) BDRip 720p dublado - derew, size 1503.2385536 not in range 2000-10000. DEBUG [2019-09-23 11:08:13,654] core.searchresults.score_sources.429: O Poderoso Chefao (1972) BDRip 720p dublado - derew matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:13,654] core.searchresults.score_sources.411: Scoring and filtering O Poderoso Chefao (1972) BDRip 720p dublado - derew based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:13,654] core.searchresults.score_sources.429: The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,653] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,653] core.searchresults.score_sources.432: Removing The Godfather (1972) 720p BrRip x264 - YIFY, size 1288.4901888 not in range 2000-10000. DEBUG [2019-09-23 11:08:13,653] core.searchresults.score_sources.429: The Godfather (1972) 720p BrRip x264 - YIFY matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:13,652] core.searchresults.score_sources.411: Scoring and filtering The Godfather (1972) 720p BrRip x264 - YIFY based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:13,652] core.searchresults.score_sources.432: Removing The Godfather (1972) 1080p BrRip x264 - YIFY, size 2576.9803776 not in range 4000-20000. DEBUG [2019-09-23 11:08:13,652] core.searchresults.score_sources.429: The Godfather (1972) 1080p BrRip x264 - YIFY matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,652] core.searchresults.score_sources.411: Scoring and filtering The Godfather (1972) 1080p BrRip x264 - YIFY based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,651] core.searchresults.score_sources.432: Removing The.Godfather.1972.1080p.EUR.BluRay.AVC.TrueHD.5.1-FGT, size 47903.083417 not in range 4000-20000. DEBUG [2019-09-23 11:08:13,651] core.searchresults.score_sources.429: The.Godfather.1972.1080p.EUR.BluRay.AVC.TrueHD.5.1-FGT matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,651] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.EUR.BluRay.AVC.TrueHD.5.1-FGT based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,650] core.searchresults.score_sources.432: Removing The.Godfather.1972.The.Coppola.Restoration.1080p.BluRay.x264.DTS-FGT, size 21439.663614 not in range 4000-20000. DEBUG [2019-09-23 11:08:13,650] core.searchresults.score_sources.429: The.Godfather.1972.The.Coppola.Restoration.1080p.BluRay.x264.DTS-FGT matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,650] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.The.Coppola.Restoration.1080p.BluRay.x264.DTS-FGT based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,649] core.searchresults.score_sources.429: The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,649] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,649] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.iNTERNAL.BDRip.x264-LiBRARiANS based on resolution BluRay-SD. DEBUG [2019-09-23 11:08:13,649] core.searchresults.score_sources.432: Removing The.Godfather.1972.iNTERNAL.1080p.BluRay.x264-LiBRARiANS, size 21512.166276 not in range 4000-20000. DEBUG [2019-09-23 11:08:13,648] core.searchresults.score_sources.429: The.Godfather.1972.iNTERNAL.1080p.BluRay.x264-LiBRARiANS matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,648] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.iNTERNAL.1080p.BluRay.x264-LiBRARiANS based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,648] core.searchresults.score_sources.429: The.Godfather.1972.720p.BluRay.H264.AAC-RARBG matches source BluRay-720P, checking size. DEBUG [2019-09-23 11:08:13,648] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.720p.BluRay.H264.AAC-RARBG based on resolution BluRay-720P. DEBUG [2019-09-23 11:08:13,647] core.searchresults.score_sources.432: Removing The.Godfather.1972.1080p.BluRay.H264.AAC-RARBG, size 3625.876719 not in range 4000-20000. DEBUG [2019-09-23 11:08:13,647] core.searchresults.score_sources.429: The.Godfather.1972.1080p.BluRay.H264.AAC-RARBG matches source BluRay-1080P, checking size. DEBUG [2019-09-23 11:08:13,647] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.1080p.BluRay.H264.AAC-RARBG based on resolution BluRay-1080P. DEBUG [2019-09-23 11:08:13,647] core.searchresults.score_sources.411: Scoring and filtering The.Godfather.1972.BRRip.XviD.MP3-XVID based on resolution BluRay-SD. INFO [2019-09-23 11:08:13,646] core.searchresults.score_sources.403: Filtering resolution and size requirements. INFO [2019-09-23 11:08:13,646] core.searchresults.freeleech.247: Checking torrent Freeleech info. INFO [2019-09-23 11:08:13,646] core.searchresults.seed_check.237: Keeping 37 releases. DEBUG [2019-09-23 11:08:13,645] core.searchresults.seed_check.233: The.Godfather.1972.iNTERNAL.720p.BluRay.x264-LiBRARiANS has 0 seeds, removing search result. INFO [2019-09-23 11:08:13,645] core.searchresults.seed_check.226: Checking torrent seeds. INFO [2019-09-23 11:08:13,645] core.searchresults.remove_ignored.147: Keeping 38 releases. DEBUG [2019-09-23 11:08:13,644] core.searchresults.remove_ignored.141: ['subs'] found in The Godfather 1972 720p BRRip x264 GREEK SUBS, removing from releases. INFO [2019-09-23 11:08:13,643] core.searchresults.remove_ignored.133: Filtering Ignored Words. DEBUG [2019-09-23 11:08:13,643] core.searchresults.reset.112: Resetting release scores to 0. DEBUG [2019-09-23 11:08:13,643] core.searchresults.score.56: Scoring based on quality profile Default DEBUG [2019-09-23 11:08:13,641] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MOVIES WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:13,641] core.sqldb.get_movie_details.391: Retrieving details for movie tt0068646. INFO [2019-09-23 11:08:13,641] core.searchresults.score.38: Scoring 39 releases. INFO [2019-09-23 11:08:13,640] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,640] core.searcher.get_source.340: Determining source media for the godfather 1972.Bluray.1080p.YTS INFO [2019-09-23 11:08:13,640] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:13,640] core.searcher.get_source.340: Determining source media for the godfather 1972.Bluray.720p.YTS INFO [2019-09-23 11:08:13,639] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:13,639] core.searcher.get_source.340: Determining source media for The Godfather Trilogy BRRip (Eng-Hindi) by Kishan H INFO [2019-09-23 11:08:13,639] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:13,638] core.searcher.get_source.340: Determining source media for The.Godfather.1.1972.HD.x264~PlutO~ INFO [2019-09-23 11:08:13,638] core.searcher.get_source.359: Source media determined as DVD-SD INFO [2019-09-23 11:08:13,638] core.searcher.get_source.340: Determining source media for THE-GODFATHER.Part.1.DVDrip[vice] INFO [2019-09-23 11:08:13,637] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:13,637] core.searcher.get_source.340: Determining source media for The Godfather Trilogy BRRip XviD AC3-ViSiON BOZX INFO [2019-09-23 11:08:13,637] core.searcher.get_source.359: Source media determined as DVD-SD INFO [2019-09-23 11:08:13,637] core.searcher.get_source.340: Determining source media for Godfather 1 (1972) - DvDrip Xvid - Omifast Greek INFO [2019-09-23 11:08:13,636] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:13,636] core.searcher.get_source.340: Determining source media for [cdesade]The.Godfather.Collection.(Disc.1).iso INFO [2019-09-23 11:08:13,636] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:13,635] core.searcher.get_source.340: Determining source media for The Godfather Trilogy INFO [2019-09-23 11:08:13,635] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:13,635] core.searcher.get_source.340: Determining source media for The Godfather 1972 DVD5 NTSC INFO [2019-09-23 11:08:13,634] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,634] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.BluRay.x264-FGT INFO [2019-09-23 11:08:13,634] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:13,633] core.searcher.get_source.340: Determining source media for The Godfather 1972 720p BRRip x264 GREEK SUBS INFO [2019-09-23 11:08:13,633] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:13,633] core.searcher.get_source.340: Determining source media for The Godfather Trilogy (1972-1990) 720p 5.1 BRRiP x264 AAC [Team INFO [2019-09-23 11:08:13,633] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,632] core.searcher.get_source.340: Determining source media for The Godfather The Coppola Restoration 1080p BluRay 5.1 HEVC-UTR INFO [2019-09-23 11:08:13,632] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,632] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.BluRay.x264.DTS-SARTRE INFO [2019-09-23 11:08:13,631] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:13,631] core.searcher.get_source.340: Determining source media for The.Godfather.Collection.Coppola.Restoration.Complete.Bluray.108 INFO [2019-09-23 11:08:13,631] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,630] core.searcher.get_source.340: Determining source media for The.Godfather.Trilogy.(1972-1990).1080p.BluRay.x264.AAC.5.1-POOP INFO [2019-09-23 11:08:13,630] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,630] core.searcher.get_source.340: Determining source media for The Godfather Trilogy 1080p BluRay DTS x264-ESiR(No Rars) INFO [2019-09-23 11:08:13,629] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,629] core.searcher.get_source.340: Determining source media for Trilogia O Poderoso Chef%26atilde;o (1972-1990) BluRay 1080p Dual INFO [2019-09-23 11:08:13,629] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,628] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.BluRay.10bit.HEVC-MkvCage [Part I] INFO [2019-09-23 11:08:13,628] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:13,628] core.searcher.get_source.340: Determining source media for Il padrino (1972) Doppiaggio storico, [H264 - Ita Mp3]TNT Villag INFO [2019-09-23 11:08:13,628] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:13,627] core.searcher.get_source.340: Determining source media for The Godfather Part I (1972) 720p BrRip x264 - 900MB - YIFY INFO [2019-09-23 11:08:13,627] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,627] core.searcher.get_source.340: Determining source media for The.Godfather.Triology.1972-1990.TCR.1080p.BluRay.x264.AC3-ETRG INFO [2019-09-23 11:08:13,626] core.searcher.get_source.359: Source media determined as DVD-SD INFO [2019-09-23 11:08:13,626] core.searcher.get_source.340: Determining source media for The Godfather Trilogy Part 1, 2 %26 3 DVDRip INFO [2019-09-23 11:08:13,626] core.searcher.get_source.363: Source media determined as Unknown-SD INFO [2019-09-23 11:08:13,625] core.searcher.get_source.340: Determining source media for Saga %26quot;El Padrino%26quot; - Ingles y Espa%26ntilde;ol Latino - 1 INFO [2019-09-23 11:08:13,625] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:13,625] core.searcher.get_source.340: Determining source media for The GODFATHER Trilogy - Parts I,II,III 1,2,3 - 720p BluRay x264 INFO [2019-09-23 11:08:13,624] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:13,624] core.searcher.get_source.340: Determining source media for O Poderoso Chefao (1972) BDRip 720p dublado - derew INFO [2019-09-23 11:08:13,624] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,623] core.searcher.get_source.340: Determining source media for The.Godfather.Trilogy.[ I. II. III ].1080p.BluRay.x264.anoXmous INFO [2019-09-23 11:08:13,623] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:13,623] core.searcher.get_source.340: Determining source media for The Godfather (1972) 720p BrRip x264 - YIFY INFO [2019-09-23 11:08:13,622] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,622] core.searcher.get_source.340: Determining source media for The Godfather (1972) 1080p BrRip x264 - YIFY INFO [2019-09-23 11:08:13,622] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,621] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.EUR.BluRay.AVC.TrueHD.5.1-FGT INFO [2019-09-23 11:08:13,621] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,621] core.searcher.get_source.340: Determining source media for The.Godfather.1972.The.Coppola.Restoration.1080p.BluRay.x264.DTS-FGT INFO [2019-09-23 11:08:13,621] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,620] core.searcher.get_source.340: Determining source media for The.Godfather.Part.I.1972.UNCUT.1080p.BluRay.x264-iLLUSiON INFO [2019-09-23 11:08:13,620] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:13,620] core.searcher.get_source.340: Determining source media for The.Godfather.1972.iNTERNAL.720p.BluRay.x264-LiBRARiANS INFO [2019-09-23 11:08:13,619] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:13,619] core.searcher.get_source.340: Determining source media for The.Godfather.1972.iNTERNAL.BDRip.x264-LiBRARiANS INFO [2019-09-23 11:08:13,619] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,618] core.searcher.get_source.340: Determining source media for The.Godfather.1972.iNTERNAL.1080p.BluRay.x264-LiBRARiANS INFO [2019-09-23 11:08:13,618] core.searcher.get_source.359: Source media determined as BluRay-720P INFO [2019-09-23 11:08:13,618] core.searcher.get_source.340: Determining source media for The.Godfather.1972.720p.BluRay.H264.AAC-RARBG INFO [2019-09-23 11:08:13,617] core.searcher.get_source.359: Source media determined as BluRay-1080P INFO [2019-09-23 11:08:13,617] core.searcher.get_source.340: Determining source media for The.Godfather.1972.1080p.BluRay.H264.AAC-RARBG INFO [2019-09-23 11:08:13,617] core.searcher.get_source.359: Source media determined as BluRay-SD INFO [2019-09-23 11:08:13,617] core.searcher.get_source.340: Determining source media for The.Godfather.1972.BRRip.XviD.MP3-XVID INFO [2019-09-23 11:08:13,616] core.searcher.remove_inactive.271: Filtering releases based on enabled newznab indexers. DEBUG [2019-09-23 11:08:13,584] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM SEARCHRESULTS WHERE imdbid="tt0068646" ORDER BY score DESC , CASE type WHEN "nzb" THEN 0\n WHEN "torrent" THEN 1\n WHEN "magnet" THEN 1\n END DESC\n , size DESC, freeleech DESC'] DEBUG [2019-09-23 11:08:13,584] core.sqldb.get_search_results.419: Retrieving Search Results for tt0068646. INFO [2019-09-23 11:08:13,583] core.providers.torrent_modules.yts._parse.92: Found 2 results from YTS INFO [2019-09-23 11:08:13,582] core.providers.torrent_modules.yts._parse.63: Parsing 2 YTS results. INFO [2019-09-23 11:08:12,663] core.providers.torrent_modules.yts.search.13: Performing backlog search on YTS for tt0068646. INFO [2019-09-23 11:08:12,663] root._parse.101: Found 28 results from ThePirateBay. INFO [2019-09-23 11:08:12,660] root._parse.57: Parsing ThePirateBay results. DEBUG [2019-09-23 11:08:10,986] core.sqldb.execute.156: Executing SQL command: ['SELECT * FROM MOVIES WHERE status NOT IN ("Finished", "Disabled") ORDER BY sort_title ASC LIMIT 50 OFFSET 0'] DEBUG [2019-09-23 11:08:10,986] core.sqldb.get_user_movies.327: Retrieving list of user's movies. DEBUG [2019-09-23 11:08:10,672] core.sqldb.execute.156: Executing SQL command: ['SELECT COUNT(1) FROM MOVIES WHERE status IN ("Finished", "Disabled")'] DEBUG [2019-09-23 11:08:10,670] core.sqldb.execute.156: Executing SQL command: ['SELECT COUNT(1) FROM MOVIES'] DEBUG [2019-09-23 11:08:10,670] core.sqldb.get_library_count.363: Getting count of library. INFO [2019-09-23 11:08:09,797] root.search.10: Performing backlog search on ThePirateBay for tt0068646. INFO [2019-09-23 11:08:09,796] core.providers.torrent_modules.rarbg._parse.166: Found 9 results from INFO [2019-09-23 11:08:09,796] core.providers.torrent_modules.rarbg._parse.143: Parsing 9 Rarbg results. INFO [2019-09-23 11:08:07,209] core.movieinfo.save.346: Poster saved to userdata/posters/tt0068646.jpg INFO [2019-09-23 11:08:07,141] core.providers.torrent_modules.rarbg._get_token.122: Getting RarBG access token. INFO [2019-09-23 11:08:07,140] core.providers.torrent_modules.rarbg.search.49: Performing backlog search on Rarbg for tt0068646. INFO [2019-09-23 11:08:07,139] core.searcher.search.120: Performing backlog search for The Godfather 1972. INFO [2019-09-23 11:08:07,139] core.library.verify.812: The Godfather passes verification checks, will include title in search. DEBUG [2019-09-23 11:08:07,135] core.sqldb.execute.156: Executing SQL command: ['UPDATE MOVIES SET status=? WHERE imdbid=?', ('Wanted', 'tt0068646')] DEBUG [2019-09-23 11:08:07,133] core.sqldb.update.235: Updating status to Wanted for rows that match imdbid:tt0068646 in MOVIES. INFO [2019-09-23 11:08:07,132] core.movieinfo.save.326: Saving poster to userdata/posters/tt0068646.jpg INFO [2019-09-23 11:08:07,131] core.library.verify.805: Verification criteria met for The Godfather 1972, setting status to Wanted INFO [2019-09-23 11:08:07,130] core.searcher._t_search_grab.26: Executing automatic search/grab for The Godfather. INFO [2019-09-23 11:08:07,129] core.movieinfo.save.318: Downloading poster for tt0068646. DEBUG [2019-09-23 11:08:07,126] core.sqldb.execute.156: Executing SQL command: ['INSERT INTO MOVIES ( title, release_date, year, quality, alternative_titles, imdbid, status, origin, added_date, poster, plot, url, score, backlog, tmdbid, media_release_date, finished_file, sort_title, filters ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )', ['The Godfather', '1972-03-14', '1972', 'Default', "The Godfather Part I,The Godfather Part 1,Mario Puzo's The Godfather,The Godfather: The Coppola Restoration,The Godfather: Part I,The Godfather 1,Godfather, The,The Godfather, Part 1,Godfather, the 01 Godfather, The", 'tt0068646', 'Waiting', 'Search', '2019-09-23', 'tt0068646.jpg', 'Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.', 'https://www.themoviedb.org/movie/238', 8.6, 0, 238, '2000-12-07', None, 'Godfather, The', '{"preferredwords": "", "requiredwords": "", "ignoredwords": ""}']] DEBUG [2019-09-23 11:08:07,126] core.sqldb.write.183: Writing data to MOVIES. INFO [2019-09-23 11:08:07,125] core.library.convert_to_db.565: Converting movie metadata to database structure for The Godfather. DEBUG [2019-09-23 11:08:07,123] core.sqldb.execute.156: Executing SQL command: ['SELECT 1 FROM MOVIES WHERE imdbid="tt0068646"'] DEBUG [2019-09-23 11:08:07,123] core.sqldb.row_exists.580: Checking if imdbid="tt0068646" exists in database table MOVIES WARNING [2019-09-23 11:08:07,123] core.movieinfo._search_tmdbid.170: TMDB returned imdbid as tt0068646 INFO [2019-09-23 11:08:06,976] core.movieinfo._search_tmdbid.157: Searching TMDB https://api.themoviedb.org/3/movie/238?language=en-US&append_to_response=alternative_titles,external_ids,release_dates INFO [2019-09-23 11:08:06,975] core.movieinfo._search_tmdbid.153: Searching TheMovieDB for TMDB ID: 238. DEBUG [2019-09-23 11:08:06,975] core.library.add_movie.845: More information needed, searching TheMovieDB for 238 INFO [2019-09-23 11:08:06,974] core.library.add_movie.839: Adding The Godfather to library.

I can't seem to make the crash happen on demand right now, so maybe table this for now and I'll see what I can do to make it happen. OR I'll see what I can do about replicating the "it's not searching unless I force it to" part of it.

barbequesauce commented 5 years ago

Please reopen once you capture it... thanks!