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 OTLP exporter reconnect test #1814

Merged
merged 4 commits into from
Apr 15, 2021
Merged

Commits on Apr 14, 2021

  1. Fix flaky OTLP exporter reconnect test

    The tests that check the OTLP exporter will reconnect wait for the
    reconnect loop to complete, in theory. However, they do not yield the
    active goroutine scheduling. The reconnect loop is in its own goroutine
    meaning it is unlikely for that loop to be re-entered, especially on
    slow systems. This updates the tests call runtime.Gosched when waiting
    for the reconnect loop and yield the scheduling to other goroutines.
    MrAlias committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    f71d316 View commit details
    Browse the repository at this point in the history
  2. Add changes to changelog

    MrAlias committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    2d5e814 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c027ea9 View commit details
    Browse the repository at this point in the history
  4. Remove changelog entry

    MrAlias committed Apr 14, 2021
    Configuration menu
    Copy the full SHA
    7cb51a1 View commit details
    Browse the repository at this point in the history