Increase QPS limits in integration and e2e tests
This commit is contained in:
@@ -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() {
|
||||
|
@@ -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)
|
||||
}
|
||||
|
Reference in New Issue
Block a user