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

Disable sporadically failing test #10570

Merged
merged 1 commit into from
Feb 16, 2024
Merged

Disable sporadically failing test #10570

merged 1 commit into from
Feb 16, 2024

Conversation

trask
Copy link
Member

@trask trask commented Feb 16, 2024

Resolves #10562

cc @heyams

I think it's ok not to test SniEndpoint since that wasn't really the purpose of #10357 anyways

@trask trask requested a review from a team February 16, 2024 02:56
@@ -154,10 +151,11 @@ private static Stream<Arguments> provideReactiveParameters() {
"users"))));
}

@Override
protected CqlSessionBuilder addContactPoint(CqlSessionBuilder sessionBuilder) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we have seen something similar before. I suspect that the issue in in docker/testcontainers network magic where local ip addresses are added/removed by the tests. Probably here it ends up connecting to one of these addresses (or perhaps even an address that just got removed?). As the exception only logs the endpoint we don't see where it actually tried to connect. I'd try

    sessionBuilder.addContactEndPoint(new SniEndPoint(address, "localhost") {
      @Override
      public InetSocketAddress resolve() {
        return address;
      }
    });

@laurit laurit merged commit b1dfdf0 into open-telemetry:main Feb 16, 2024
46 of 47 checks passed
steverao pushed a commit to steverao/opentelemetry-java-instrumentation that referenced this pull request Feb 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Workflow failed: Build (daily --no-build-cache) (#696)
2 participants