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

@@ -144,12 +144,8 @@ var _ = Describe("Density", func() {
})
// Explicitly put here, to delete namespace at the end of the test
// (after measuring latency metrics, etc.).framework := NewFramework("density")
options := FrameworkOptions{
clientQPS: 20,
clientBurst: 30,
}
framework := NewFramework("density", options)
// (after measuring latency metrics, etc.).
framework := NewDefaultFramework("density")
framework.NamespaceDeletionTimeout = time.Hour
BeforeEach(func() {

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)
}