Преглед изворни кода

Merge pull request #9806 from spzala/master

Check: correct the memory limit
Xiang Li пре 7 година
родитељ
комит
94f2e450dd
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,
 	},