Skip to content

Commit

Permalink
[chore] error wasn't checked in loadtest (open-telemetry#27430)
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]>
Co-authored-by: Bogdan Drutu <[email protected]>
  • Loading branch information
2 people authored and jmsnll committed Nov 12, 2023
1 parent 1ba663f commit d3fb217
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 d3fb217

Please sign in to comment.