From eff8166a45402808cc735f8b39a0dadaa548ca37 Mon Sep 17 00:00:00 2001 From: "Sahdev P. Zala" Date: Tue, 5 Jun 2018 09:46:56 -0400 Subject: [PATCH] Check: correct the memory limit We should be doing 3M not 30 as it's said in the doc comment. --- etcdctl/ctlv3/command/check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etcdctl/ctlv3/command/check.go b/etcdctl/ctlv3/command/check.go index bd6d491f8..c15914117 100644 --- a/etcdctl/ctlv3/command/check.go +++ b/etcdctl/ctlv3/command/check.go @@ -96,7 +96,7 @@ var checkDatascaleCfgMap = map[string]checkDatascaleCfg{ }, "xl": { // xl tries to hit the upper bound aggressively which is 3 versions of 1M objects (3M in total) - limit: 30000000, + limit: 3000000, kvSize: 1024, clients: 1000, },