diff --git a/satellite/accounting/rolluparchive/rolluparchive.go b/satellite/accounting/rolluparchive/rolluparchive.go index e68ee46e5..236eaef3e 100644 --- a/satellite/accounting/rolluparchive/rolluparchive.go +++ b/satellite/accounting/rolluparchive/rolluparchive.go @@ -24,7 +24,7 @@ var ( // Config contains configurable values for rollup archiver. type Config struct { Interval time.Duration `help:"how frequently rollup archiver should run" releaseDefault:"24h" devDefault:"120s"` - ArchiveAge time.Duration `help:"age at which a rollup is archived" releaseDefault:"2160h" devDefault:"24h"` + ArchiveAge time.Duration `help:"age at which a rollup is archived" default:"2160h"` BatchSize int `help:"number of records to delete per delete execution. Used only for crdb which is slow without limit." default:"500"` Enabled bool `help:"whether or not the rollup archive is enabled." default:"true"` }