Browse Source

Check: correct the memory limit

We should be doing 3M not 30 as it's said in the doc comment.
Sahdev P. Zala 7 years ago
parent
commit
eff8166a45
1 changed files with 1 additions and 1 deletions
  1. 1 1
      etcdctl/ctlv3/command/check.go

+ 1 - 1
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,
 	},