Skip to content

Commit 0bf2319

Browse files
authored
tune according to last runs (#20947)
1 parent 2420fc6 commit 0bf2319

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

devenv/tests/ocr2/load_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ func TestLoad(t *testing.T) {
141141
require.NoError(t, err)
142142
errs := l.Check(&leak.CLNodesCheck{
143143
// since the test is stable we assert absolute values
144-
// no more than 30% CPU and 200Mb (last 5m)
144+
// no more than 25% CPU and 350Mb (last 5m)
145145
ComparisonMode: leak.ComparisonModeAbsolute,
146146
NumNodes: in.NodeSets[0].Nodes,
147147
Start: start,
148148
End: time.Now(),
149149
WarmUpDuration: 30 * time.Minute,
150-
CPUThreshold: 30.0,
151-
MemoryThreshold: 200.0,
150+
CPUThreshold: 25.0,
151+
MemoryThreshold: 350.0,
152152
})
153153
require.NoError(t, errs)
154154
})

0 commit comments

Comments
 (0)