Quantcast
Channel: configuration - Forum - FlexGet
Viewing all articles
Browse latest Browse all 716

Why is flexget rerunning task?

$
0
0

@Isaac_Christie wrote:

I have recently created my config file to run as daemon with the irc bot for helping increase my buffer on my private tracker. I plan to run this config on my seedbox. The issue I am having is that I dont know why flexget keeps rerunning task when "content_size" is outside the max size set.

#------ private information
variables: secrets.yml

schedules: no

templates:
  movies:
    download: ~/flexget/torrents/
    imdb_lookup: yes
    imdb:
      min_score: 6.5
      min_votes: 5000
      min_year: 2016
      reject_genres:
        - documentary
      # accept_languages:
        # - english

irc:
  irc_tl:
    tracker_file: 'TorrentLeech.tracker'
    nickname: 'm0j0_bot2'
    nickserv_password: '{? irc.nickserv_password ?}'
    port: 7011
    rsskey: '{? irc.rsskey ?}'
    channels: ["#tlannounces"]
    task_re:
      # get_some:
        # - regexp: '(TV :: Episodes HD)|(Movies :: Bluray)|(Movies :: WEBRip)|(Movies :: BDRip)'
          # field: irc_category

      get_tv:
        - regexp: '(TV :: Episodes HD)|(TV :: Episodes)'
          field: irc_category

      get_movie_bluray_1080p:
        - regexp: '(Movies :: Bluray)'
          field: irc_category
      get_movie_bluray_720p:
        - regexp: '(Movies :: Bluray)'
          field: irc_category

      get_movie_bdrip_720p:
        - regexp: '(Movies :: BDRip)'
          field: irc_category
      get_movie_bdrip:
        - regexp: '(Movies :: BDRip)'
          field: irc_category

      get_movie_webdl_1080p:
        - regexp: '(Movies :: WEBRip)'
          field: irc_category
      get_movie_webdl_720p:
        - regexp: '(Movies :: WEBRip)'
          field: irc_category

      get_movie_hdrip:
        - regexp: '(Movies :: HDRip)'
          field: irc_category

tasks:
  # get_some:
    # manual: yes
    # accept_all: yes
    # download: C:/Users/Isaac/flexget/torrents/

  get_tv:
    manual: yes
    download: ~/flexget/torrents/
    metainfo_series: yes
    trakt_lookup:
      account: '{? trakt.usr ?}'
    thetvdb_lookup: yes
    configure_series:
      from:
        trakt_list:
          account: '{? trakt.usr ?}'
          list: '{? trakt.tv ?}'
          type: shows
      settings:
        identified_by: ep
        qualities:
          - hdtv 1080p h264
          - hdtv 720p h264
          - hdtv <720p h264
          - webdl 1080p h264
          - webdl 720p h264
          - webrip 1080p h264
          - webrip 720p h264
    reorder_quality:
      webrip:
        above: webdl
    if:
      - '"webrip" == quality.source and not ("AMZN" in title or "Amazon" in title or "NF" in title)': reject

  get_movie_bluray_1080p:
    seen: local
    manual: yes
    template: movies
    quality: bluray 1080p h264
    content_size:
      max: 10000
      min: 200

  get_movie_bluray_720p:
    seen: local
    manual: yes
    template: movies
    quality: bluray 720p h264
    content_size:
      max: 10000
      min: 200

  get_movie_bdrip_720p:
    seen: local
    manual: yes
    template: movies
    quality: bluray 720p h264
    content_size:
      max: 10000
      min: 200

  get_movie_bdrip:
    seen: local
    manual: yes
    template: movies
    quality: bluray <720p h264
    content_size:
      max: 10000
      min: 200

  get_movie_webdl_1080p:
    seen: local
    manual: yes
    template: movies
    quality: webdl 1080p h264
    content_size:
      max: 6000
      min: 200

  get_movie_webdl_720p:
    seen: local
    manual: yes
    template: movies
    quality: webdl 720p h264
    content_size:
      max: 6000
      min: 200

  get_movie_hdrip:
    seen: local
    manual: yes
    template: movies
    quality: hdrip h264
    content_size:
      max: 6000
      min: 200

Log File

2017-08-12 03:29 INFO     imdb          get_movie_bluray_720p Didn't accept `The Loved One` because of rule(s) min_votes (2741 < 5000), min_year (1965 < 2016)
2017-08-12 04:14 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay x264 DTS-HD MA 7 1-FGT
2017-08-12 04:14 INFO     content_size  get_movie_bluray_1080p Entry `Guardians of the Galaxy Vol 2 2017 1080p BluRay x264 DTS-HD MA 7 1-FGT` too big, rejecting
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 04:14 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay x264 DTS-HD MA 7 1-FGT
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 04:14 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay x264 DTS-HD MA 7 1-FGT
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 04:14 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay x264 DTS-HD MA 7 1-FGT
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 04:14 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay x264 DTS-HD MA 7 1-FGT
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 04:14 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay x264 DTS-HD MA 7 1-FGT
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 04:14 INFO     task          get_movie_bluray_1080p Task has been re-run 5 times already, stopping for now
2017-08-12 04:56 INFO     imdb          get_movie_bluray_720p Didn't accept `Ronin` because of rule(s) min_year (1998 < 2016)
2017-08-12 04:56 INFO     imdb          get_movie_bluray_1080p Didn't accept `Don't Knock Twice` because of rule(s) min_score (5.2 < 6.5)
2017-08-12 09:00 INFO     download      get_tv          Downloading: Killjoys S03E07 720p HDTV x264-AVS
2017-08-12 09:01 INFO     download      get_tv          Downloading: Killjoys S03E07 HDTV x264-SVA
2017-08-12 09:52 INFO     imdb          get_movie_bluray_1080p Didn't accept `El Norte` because of rule(s) min_votes (4002 < 5000), min_year (1983 < 2016)
2017-08-12 09:57 WARNING  imdb_lookup   get_movie_bluray_720p IMDB lookup failed for The Journal of Diego Rodriguez Silva 1972 720p BluRay x264-SADPANDA
2017-08-12 09:57 INFO     imdb          get_movie_bluray_720p Skipping The Journal of Diego Rodriguez Silva 1972 720p BluRay x264-SADPANDA because of an error: Title `The Journal of Diego Rodriguez Silva 1972 720p BluRay x264-SADPANDA` lookup failed
2017-08-12 09:59 WARNING  imdb_lookup   get_movie_bluray_1080p IMDB lookup failed for The Journal of Diego Rodriguez Silva 1972 1080p BluRay x264-SADPANDA
2017-08-12 09:59 INFO     imdb          get_movie_bluray_1080p Skipping The Journal of Diego Rodriguez Silva 1972 1080p BluRay x264-SADPANDA because of an error: Title `The Journal of Diego Rodriguez Silva 1972 1080p BluRay x264-SADPANDA` lookup failed
2017-08-12 10:01 INFO     download      get_tv          Downloading: Dark Matter S03E11 HDTV x264-SVA
2017-08-12 10:01 INFO     download      get_tv          Downloading: Dark Matter S03E11 720p HDTV x264-AVS
2017-08-12 13:59 INFO     imdb          get_movie_bluray_720p Didn't accept `Kill Switch` because of rule(s) min_score (5.5 < 6.5), min_votes (3405 < 5000)
2017-08-12 15:20 INFO     download      get_tv          Downloading: Dark Matter S03E11 1080p WEB x264-TBS
2017-08-12 15:20 INFO     download      get_tv          Downloading: Killjoys S03E07 1080p WEB x264-TBS
2017-08-12 18:11 INFO     imdb          get_movie_bluray_1080p Didn't accept `Gimme Shelter` because of rule(s) min_year (1970 < 2016), reject_genres
2017-08-12 19:24 INFO     imdb          get_movie_bluray_1080p Didn't accept `Peppermint Soda` because of rule(s) min_votes (608 < 5000), min_year (1977 < 2016)
2017-08-12 19:36 INFO     imdb          get_movie_bluray_720p Didn't accept `Rififi` because of rule(s) min_year (1955 < 2016)
2017-08-12 20:16 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay DTS x264-VietHD
2017-08-12 20:16 INFO     content_size  get_movie_bluray_1080p Entry `Guardians of the Galaxy Vol 2 2017 1080p BluRay DTS x264-VietHD` too big, rejecting
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 20:16 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay DTS x264-VietHD
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 20:16 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay DTS x264-VietHD
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 20:16 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay DTS x264-VietHD
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 20:16 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay DTS x264-VietHD
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Rerunning the task in case better resolution can be achieved.
2017-08-12 20:16 INFO     download      get_movie_bluray_1080p Downloading: Guardians of the Galaxy Vol 2 2017 1080p BluRay DTS x264-VietHD
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Plugin content_size has requested task to be ran again after execution has completed.
2017-08-12 20:16 INFO     task          get_movie_bluray_1080p Task has been re-run 5 times already, stopping for now
2017-08-12 21:24 INFO     imdb          get_movie_bluray_1080p Didn't accept `The Ones Below` because of rule(s) min_score (6.1 < 6.5), min_year (2015 < 2016)

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 716

Trending Articles