Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Flaky Test]: TestCloseChannel/EqualJitterBackoff – Should be false #4415

Closed
rdner opened this issue Mar 14, 2024 · 2 comments · Fixed by #4422
Closed

[Flaky Test]: TestCloseChannel/EqualJitterBackoff – Should be false #4415

rdner opened this issue Mar 14, 2024 · 2 comments · Fixed by #4422
Assignees
Labels
flaky-test Unstable or unreliable test cases. Team:Elastic-Agent Label for the Agent team

Comments

@rdner
Copy link
Member

rdner commented Mar 14, 2024

Failing test case

TestCloseChannel/EqualJitterBackoff

Error message

Should be false

Build

https://buildkite.com/elastic/elastic-agent/builds/7764#018e3888-360a-47b4-b8f1-04255d95d697

OS

Mac

Stacktrace and notes

=== FAIL: internal/pkg/core/backoff TestCloseChannel/EqualJitterBackoff (0.01s)
    backoff_test.go:35:
        	Error Trace:	/Users/admin/builds/bk-agent-prod-orka-1710345447011028072/elastic/elastic-agent/internal/pkg/core/backoff/backoff_test.go:35
        	Error:      	Should be false
        	Test:       	TestCloseChannel/EqualJitterBackoff
=== FAIL: internal/pkg/core/backoff TestCloseChannel (0.01s)
@rdner rdner added Team:Elastic-Agent Label for the Agent team flaky-test Unstable or unreliable test cases. labels Mar 14, 2024
@elasticmachine
Copy link
Contributor

Pinging @elastic/elastic-agent (Team:Elastic-Agent)

@cmacknz
Copy link
Member

cmacknz commented Mar 14, 2024

The initial wait is a random integer in the range (0, 2E9] where the units are ns as those are the underlying units of time.Duration. So the initial wait is plausibly 1 ns some of the time.

Edit: I read the code too quickly, we are always guaranteed to wait for at least init:

func NewEqualJitterBackoff(done <-chan struct{}, init, max time.Duration) Backoff {
return &EqualJitterBackoff{
duration: init * 2, // Allow to sleep at least the init period on the first wait.

// Make sure we have always some minimal back off and jitter.
temp := b.duration / 2

Increasing init should hopefully fix this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
flaky-test Unstable or unreliable test cases. Team:Elastic-Agent Label for the Agent team
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants