Increase QPS limits in integration and e2e tests

This commit is contained in:
Wojciech Tyczynski
2016-02-26 11:00:35 +01:00
parent 9e5d1b61fa
commit c47aa368bd
3 changed files with 18 additions and 10 deletions

View File

@@ -84,8 +84,8 @@ type FrameworkOptions struct {
// you (you can write additional before/after each functions).
func NewDefaultFramework(baseName string) *Framework {
options := FrameworkOptions{
clientQPS: 5,
clientBurst: 10,
clientQPS: 20,
clientBurst: 50,
}
return NewFramework(baseName, options)
}