From 253cbe5fa0663d9e9d38cdc5e7f0ade0a245d5c7 Mon Sep 17 00:00:00 2001 From: Jennifer Li Johnson Date: Mon, 22 Apr 2019 15:18:16 -0400 Subject: [PATCH] updates rollup default interval (#1800) --- pkg/accounting/rollup/rollup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/accounting/rollup/rollup.go b/pkg/accounting/rollup/rollup.go index 14ccadfee..b3b439cb0 100644 --- a/pkg/accounting/rollup/rollup.go +++ b/pkg/accounting/rollup/rollup.go @@ -17,7 +17,7 @@ import ( // Config contains configurable values for rollup type Config struct { - Interval time.Duration `help:"how frequently rollup should run" devDefault:"120s" releaseDefault:"6h"` + Interval time.Duration `help:"how frequently rollup should run" devDefault:"120s" releaseDefault:"24h"` MaxAlphaUsage memory.Size `help:"the bandwidth and storage usage limit for the alpha release" default:"25GB"` }