瀏覽代碼

Check: correct the memory limit

We should be doing 3M not 30 as it's said in the doc comment.
Sahdev P. Zala 7 年之前
父節點
當前提交
eff8166a45
共有 1 個文件被更改,包括 1 次插入1 次删除
  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,
 	},