cmd/storj-sim: Increase storj-sim max-alpha-usage (#3824)

This commit is contained in:
Stefan Benten 2020-03-24 14:48:25 +01:00 committed by GitHub
parent aed8dea625
commit bdec51658e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ import (
// Config contains configurable values for rollup
type Config struct {
Interval time.Duration `help:"how frequently rollup should run" releaseDefault:"24h" devDefault:"120s"`
MaxAlphaUsage memory.Size `help:"the bandwidth and storage usage limit for the alpha release" releaseDefault:"5GB" devDefault:"25GB"`
MaxAlphaUsage memory.Size `help:"the bandwidth and storage usage limit for the alpha release" releaseDefault:"5GB" devDefault:"200GB"`
DeleteTallies bool `help:"option for deleting tallies after they are rolled up" default:"true"`
}