Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions devenv/tests/ocr2/load_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,14 @@ func TestLoad(t *testing.T) {
require.NoError(t, err)
errs := l.Check(&leak.CLNodesCheck{
// since the test is stable we assert absolute values
// no more than 30% CPU and 200Mb (last 5m)
// no more than 25% CPU and 350Mb (last 5m)
ComparisonMode: leak.ComparisonModeAbsolute,
NumNodes: in.NodeSets[0].Nodes,
Start: start,
End: time.Now(),
WarmUpDuration: 30 * time.Minute,
CPUThreshold: 30.0,
MemoryThreshold: 200.0,
CPUThreshold: 25.0,
MemoryThreshold: 350.0,
})
require.NoError(t, errs)
})
Expand Down
Loading