Check: correct the memory limit

We should be doing 3M not 30 as it's said in the doc comment.
This commit is contained in:
Sahdev P. Zala
2018-06-05 09:46:56 -04:00
parent aaa71e5b6f
commit eff8166a45

View File

@@ -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,
},