-
Notifications
You must be signed in to change notification settings - Fork 119
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
Traces tests fail with keepalive off #154
Comments
MattFrick
added a commit
to MattFrick/beyla
that referenced
this issue
Jul 25, 2023
Add simple trace/metric integration tests with DisableKeepAlives set to true. In arguments to "go test", add the verbose flag and remove "/..." from module path so that it prints out each test as it's running them.
MattFrick
added a commit
to MattFrick/beyla
that referenced
this issue
Jul 25, 2023
Fix time comparison in test code that caused failure in issue grafana#154. Add simple trace/metric integration tests with DisableKeepAlives set to true. In arguments to "go test", add the verbose flag and remove "/..." from module path so that it prints out each test as it's running them.
MattFrick
added a commit
that referenced
this issue
Jul 25, 2023
Fix time comparison in test code that caused failure in issue #154. Add simple trace/metric integration tests with DisableKeepAlives set to true. In arguments to "go test", add the verbose flag and remove "/..." from module path so that it prints out each test as it's running them.
mattdurham
pushed a commit
to mattdurham/beyla
that referenced
this issue
Jan 22, 2025
Fix time comparison in test code that caused failure in issue grafana#154. Add simple trace/metric integration tests with DisableKeepAlives set to true. In arguments to "go test", add the verbose flag and remove "/..." from module path so that it prints out each test as it's running them.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Making our HTTP client for integration tests run without keepalive, which is default for Go, it causes failure in few of the Traces tests.
To make this happen I ran the test suite with the following addition to the Transport configuration for the HTTP client:
DisableKeepAlives: true,
The text was updated successfully, but these errors were encountered: