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

Fix flaky prom remote write exporter concurrency test #37430

Merged
Changes from 1 commit
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
Prev Previous commit
Re-enable retry
  • Loading branch information
pjanotti committed Jan 23, 2025
commit 425c848a1e282af2b4a3fddd54db80ff36f0da2d
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func Test_PushMetricsConcurrent(t *testing.T) {

// Adjusted retry settings for faster testing
retrySettings := configretry.BackOffConfig{
Enabled: false,
Enabled: true,
InitialInterval: 100 * time.Millisecond, // Shorter initial interval
MaxInterval: 1 * time.Second, // Shorter max interval
MaxElapsedTime: 2 * time.Second, // Shorter max elapsed time
Expand Down
Loading