AutoAdd keeps disabling one particular watchdir

Suggest, post, or discuss plugins for Deluge
Post Reply
dg_
New User
New User
Posts: 1
Joined: Wed Feb 28, 2018 3:51 pm

AutoAdd keeps disabling one particular watchdir

Post by dg_ »

I'm using Deluge with the AutoAdd plugin via a Docker container and one of the watched dirs keeps getting disabled by itself. In other words, the `enabled` setting changes to `false` by itself. I was not able to find out why or when yet, but, if I put it `"enabled": true`, that will persist for a couple of days, but eventually it will change to `false`. Plus, it always happen on the same entry as well.

Any ideas of what's going on or where to look for clues?

Here's my autoadd.conf file (note the `"enabled": false` on the second entry:

Code: Select all

{
  "file": 1,
  "format": 1
}{
  "watchdirs": {
    "1": {
      "move_completed_path": "/data/Movies",
      "download_location": "/data/Torrents",
      "enabled": true,
      "label": "Movies",
      "label_toggle": false,
      "remove_at_ratio": true,
      "move_completed_toggle": true,
      "stop_ratio": 0.0,
      "move_completed": true,
      "path": "/data/Torrents/Movies",
      "abspath": "/data/Torrents/Movies"
    },
    "2": {
      "move_completed_path": "/data/TVShows",
      "download_location": "/data/Torrents",
      "enabled": false,
      "label": "TVShows",
      "label_toggle": false,
      "remove_at_ratio": true,
      "move_completed_toggle": true,
      "stop_ratio": 0.0,
      "move_completed": true,
      "path": "/data/Torrents/TVShows",
      "abspath": "/data/Torrents/TVShows"
    }
  },
  "next_id": 3
}
greatscott
New User
New User
Posts: 7
Joined: Thu Mar 15, 2018 2:32 pm

Re: AutoAdd keeps disabling one particular watchdir

Post by greatscott »

I experienced this on seedboxes with heavy loading, for example when I drove the IO utilization to 100% often.
This doesn't happen on servers with low loading.
I guess when AutoAdd got stuck due to IO, it somehow unchecks those watcher folders?

Sometimes when I restarted Deluge on a server with heavy loading, the plugins would be unchecked too. But on server without so high loading, this isn't an issue.
Post Reply