Change 'backups.prune_age' default to 6 hours
This commit is contained in:
parent
e34d31a58c
commit
17ca3659c5
2 changed files with 4 additions and 4 deletions
config
|
@ -12,9 +12,9 @@ return [
|
|||
// uses to upload backups to S3 storage. Value is in minutes, so this would default to an hour.
|
||||
'presigned_url_lifespan' => env('BACKUP_PRESIGNED_URL_LIFESPAN', 60),
|
||||
|
||||
// The time in which to wait before automatically marking a backup as failed.
|
||||
// To disable this feature, set the value to `0`.
|
||||
'prune_age' => env('BACKUP_PRUNE_AGE', 60),
|
||||
// The time to wait before automatically failing a backup, time is in minutes and defaults
|
||||
// to 6 hours. To disable this feature, set the value to `0`.
|
||||
'prune_age' => env('BACKUP_PRUNE_AGE', 360),
|
||||
|
||||
'disks' => [
|
||||
// There is no configuration for the local disk for Wings. That configuration
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue