Hello,
I am having a weird issue with curator. I did some tests previously running curator manually to take a few snapshots, and it worked.
Now I am running it again and I see nothing happening and nothing in the logs.
Here is my curator config and my action file:
client:
  hosts:
    - SERVER-01
  port: 9200
  url_prefix:
  use_ssl: True
  certificate: '/CA/CA.cer'
  ssl_no_validate: False
  http_auth: xxxxx:xxxx
  timeout: 30
  master_only: False
logging:
  loglevel: DEBUG
  logfile: "/var/log/curator/curator.log"
  logformat: default
  blacklist: []
action file:
actions:
  1:
    action: snapshot
    description: >-
      Snapshot xxxxx
    options:
      repository: backup
      name: curator-%Y%m%d%H%M%S
      ignore_unavailable: False
      include_global_state: True
      partial: False
      wait_for_completion: True
      skip_repo_fs_check: False
      disable_action: False
      continue_if_exception: False
    filters:
    - filtertype: pattern
      kind: prefix
      value: log-
    - filtertype: age
      source: creation_date
      direction: older
      unit: days
      unit_count: 1
    - filtertype: opened
      exclude: False
When I run curator /path/actionfile.yml, it justs ends and nothing happens. I'm not sure if anything changed since the time it worked before..
Any help is appreciated.
Thanks

