Skip to content

Commit

Permalink
[chore] error wasn't checked in loadtest
Browse files Browse the repository at this point in the history
An error appears to be the load tests to fail, but it's not being checked which makes it hard to debug. Helps with open-telemetry#27429

Signed-off-by: Alex Boten <[email protected]>
  • Loading branch information
Alex Boten committed Oct 4, 2023
1 parent 0e2b6f9 commit f05e3b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testbed/tests/scenarios.go
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,8 @@ func ScenarioTestTraceNoBackend10kSPS(

tc.Sleep(tc.Duration)

rss, _, _ := tc.AgentMemoryInfo()
rss, _, err := tc.AgentMemoryInfo()
require.NoError(t, err)
assert.Less(t, configuration.ExpectedMinFinalRAM, rss)
}

Expand Down

0 comments on commit f05e3b3

Please sign in to comment.