Skip to content

Commit

Permalink
Fix default file backup config (#1857)
Browse files Browse the repository at this point in the history
The `file-backup` section should be inside `eclair`, otherwise startup fails.
  • Loading branch information
t-bast committed Jul 2, 2021
1 parent f52c3dd commit 516929b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions eclair-core/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -236,14 +236,14 @@ eclair {
}
}
}
}

file-backup {
enabled = true // enable the automatic sqlite db backup; do not change this unless you know what you are doing
interval = 10 seconds // interval between two backups
target-file = "eclair.sqlite.bak" // name of the target backup file; will be placed under the chain directory
// override this with a script/exe that will be called everytime a new database backup has been created
# notify-script = "/absolute/path/to/script.sh"
file-backup {
enabled = true // enable the automatic sqlite db backup; do not change this unless you know what you are doing
interval = 10 seconds // interval between two backups
target-file = "eclair.sqlite.bak" // name of the target backup file; will be placed under the chain directory
// override this with a script/exe that will be called everytime a new database backup has been created
# notify-script = "/absolute/path/to/script.sh"
}
}

akka {
Expand Down

0 comments on commit 516929b

Please sign in to comment.