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

Flexget is skipping my list_add tasks. Error: Task didn't produce any entries

$
0
0

Flexget 3.1.50, python 3.6
Ubuntu commercial seedbox

Hello,

I really need some help. I just can’t get anywhere with Flexget. It seems to be skipping most of my tasks. I’ve been testing 1 task at a time, then adding the next to troubleshoot and learn. Right now it seems to skip many of my tasks if more than 1 is in the script. With the snippet below Flexget successfully pulls entries from Trakt if I run the “AddtraktMovies” list_add task alone. But if I run it together with the “Add_MyMovies” list_match task Flexget returns: Task didn’t produce any entries… When I run 3 tasks Flexget only runs the last Output task (called “SpitItOut” below.) I’ve tried the CLI execute --now, --discover-now, and --disable-tracking options modes. I tried execute without testing to make sure test-mode wasn’t the problem. Please help? I’d be so very grateful.

Snippet:

variables: variables.yml
web_server: yes
schedules:
  - tasks: '*'
    interval:
      minutes: 30
#######
tasks:
  AddtraktMovies:
    priority: 1
    list_add:
      - movie_list: movies
        #strip_year: yes
    trakt_list:
      account: '{? trakt.acct ?}'
      username: '{? trakt.usr ?}'
      list: watchlist
      type: movies
    accept_all: yes
    seen: local
####
####
#task that automatically downloads movies from the movie_list
tasks:
  Add-mymovies:
    priority: 10 # run after the movie queue fill task
    discover:
      what:
        - movie_list: movies
      from:
        #- search_rss: 
            #url: http://piratebay.tech/search.php?q={{search_term}}&cat=207
        - rarbg:
            category: 54
    torrent_alive: 10 # Will reject results with less than 10 seeds
    imdb_lookup: yes  # can also use imdb_lookup or tmdb_lookup
    quality: dvdrip+ !2160p !360p !480p !xvid 
    seen_movies: strict
    list_match:
      from:
        - movie_list: movies
    # deluge:
      # host: '{? delugeremote.host ?}'
      # port: '{? delugeremote.port ?}'
      # username: '{? daemon.usr ?}'
      # password: '{? daemon.pwd ?}'
      # main_file_only: yes
      # hide_sparse_files: yes
      # magnetization_timeout: 30
      # label: Movies/{{imdb_genres}}
        # container_directory "{{ imdb_name|replace(':', ' -') }} ({{ imdb_year }}) - {{ quality }}"
        # content_filename "{{ imdb_name|replace(':', ' -') }} ({{ imdb_year }}) - {{ quality }}"
####
    digest: recentlyAccepted
#
tasks:
  spitItOut:
    from_digest:
      list: recentlyAccepted
    accept_all: yes
    seen: no
    make_html:
     file: ~/flexgetDigest.html

Snippet of test Log

2020-05-12 18:39:59 WARNING utils Add-mymovies Input movie_list did not return anything

Complete Configuration: https://pastebin.com/xaC9845J
4 Flexget Logs of each task: https://pastebin.com/KE6PPfQz

Most of my TV tasks never get processed in the complete configuration either.

Also feel free to correct my configuration if you feel like it. It’s not finished obviously.

1 post - 1 participant

Read full topic


Viewing all articles
Browse latest Browse all 716

Trending Articles