reduce default --db.size.limit from 7 to 3 Tb (to fit defaults of some systems) (#7478)

This commit is contained in:
Alex Sharov 2023-05-10 09:41:22 +07:00 committed by GitHub
parent 771c6fc202
commit dc11deed62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -719,7 +719,7 @@ var (
DbSizeLimitFlag = cli.StringFlag{ DbSizeLimitFlag = cli.StringFlag{
Name: "db.size.limit", Name: "db.size.limit",
Usage: "runtime limit of chandata db size. you can change value of this flag at any time", Usage: "runtime limit of chandata db size. you can change value of this flag at any time",
Value: (7 * datasize.TB).String(), Value: (3 * datasize.TB).String(),
} }
HealthCheckFlag = cli.BoolFlag{ HealthCheckFlag = cli.BoolFlag{