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

[chore] use require.Eventually instead of time.Sleep to retry checks #31006

Merged
merged 1 commit into from
Feb 1, 2024
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
11 changes: 5 additions & 6 deletions connector/failoverconnector/traces_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,11 @@ func TestTracesWithFailoverRecovery(t *testing.T) {
// Simulate recovery of exporter
failoverConnector.failover.ModifyConsumerAtIndex(0, consumertest.NewNop())

time.Sleep(100 * time.Millisecond)

_, ch, ok = failoverConnector.failover.getCurrentConsumer()
idx = failoverConnector.failover.pS.ChannelIndex(ch)
assert.True(t, ok)
require.Equal(t, idx, 0)
require.Eventually(t, func() bool {
_, ch, ok = failoverConnector.failover.getCurrentConsumer()
idx = failoverConnector.failover.pS.ChannelIndex(ch)
return ok && idx == 0
}, 3*time.Second, 100*time.Millisecond)
}

func sampleTrace() ptrace.Traces {
Expand Down
Loading