Warnings
Warnings from restic
Until version 0.13.0, resticprofile was always considering a restic warning as an error. This will remain the default. But the version 0.13.0 introduced a parameter to avoid this behaviour and consider that the backup was successful instead.
A restic warning occurs when it cannot read some files, but a snapshot was successfully created.
no-error-on-warning
version = "1"
[profile]
  [profile.backup]
    no-error-on-warning = trueversion: "1"
profile:
    backup:
        no-error-on-warning: true"profile" = {
  "backup" = {
    "no-error-on-warning" = true
  }
}{
  "version": "1",
  "profile": {
    "backup": {
      "no-error-on-warning": true
    }
  }
}