From 11c394f7aa3812f6e1d6525dfe64b818ec90e5da Mon Sep 17 00:00:00 2001 From: Antoine Grondin Date: Tue, 29 Oct 2024 14:24:40 +0900 Subject: [PATCH] fix(cmd/query): missing --buckets flag --- cmd/humanlog/query.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/humanlog/query.go b/cmd/humanlog/query.go index aa76c90..16a64b6 100644 --- a/cmd/humanlog/query.go +++ b/cmd/humanlog/query.go @@ -126,7 +126,7 @@ func queryApiSummarizeCmd( localhost := cli.BoolFlag{Name: "localhost"} return cli.Command{ Name: "summarize", - Flags: []cli.Flag{localhost, fromFlag, toFlag}, + Flags: []cli.Flag{localhost, fromFlag, toFlag, bucket}, Action: func(cctx *cli.Context) error { ctx := getCtx(cctx) state := getState(cctx)