diff --git a/tests/robustness/linearizability_test.go b/tests/robustness/linearizability_test.go index 30bf8d8abb7..a6bf66a2616 100644 --- a/tests/robustness/linearizability_test.go +++ b/tests/robustness/linearizability_test.go @@ -78,7 +78,7 @@ func TestRobustness(t *testing.T) { clusterOfSize1Options := baseOptions clusterOfSize1Options = append(clusterOfSize1Options, e2e.WithClusterSize(1)) // Add LazyFS only for traffic with lower QPS as it uses a lot of CPU lowering minimal QPS. - if enableLazyFS && tp.Profile.MinimalQPS <= 100 { + if enableLazyFS && tp.Profile.MinimalQPS <= 80 { clusterOfSize1Options = append(clusterOfSize1Options, e2e.WithLazyFSEnabled(true)) name = filepath.Join(name, "LazyFS") } diff --git a/tests/robustness/traffic/traffic.go b/tests/robustness/traffic/traffic.go index 5e4a4b89d1a..7aa51734f5a 100644 --- a/tests/robustness/traffic/traffic.go +++ b/tests/robustness/traffic/traffic.go @@ -37,7 +37,7 @@ var ( LowTraffic = Profile{ Name: "LowTraffic", - MinimalQPS: 100, + MinimalQPS: 80, MaximalQPS: 200, ClientCount: 8, MaxNonUniqueRequestConcurrency: 3,