Skip to content

Don't throw away the inner exception #1437

Open
@haf

Description

@haf

Description

The RestClient for SchemaRegistry throws away the inner exception:

throw new HttpRequestException(aggregatedErrorMessage);

So that error messages become:

image

without an inner exception. Simply pass the caught exception into the c'tor to fix this issue.

How to reproduce

Make the schema registry TLS endpoint be something that this client doesn't like.

Similarly, it's impossible to override the logic for validating TLS certificates due to how the HttpClient is created:

                    if (certificates.Count > 0)
                    {
                        client = new HttpClient(CreateHandler(certificates, enableSslCertificateVerification)) { BaseAddress = new Uri(uri, UriKind.Absolute), Timeout = TimeSpan.FromMilliseconds(timeoutMs) };
                    }
                    else
                    {
                        client = new HttpClient() { BaseAddress = new Uri(uri, UriKind.Absolute), Timeout = TimeSpan.FromMilliseconds(timeoutMs) };
                    }

This is doubly annoying because it would seem that, by explicitly creating a new HttpRequestMessage in CreateRequest, the global ServicePointManager.ServerCertificateValidationCallback that I tried setting, is overridden and defaulted.

Finally it's annoying because it would seem that on macOS, .Net Core doesn't default to using the system-configured certificates, so even if this certificate is valid for me outside .net, it's not inside .net.

Checklist

I haven't followed it because this issue is a review of the source code.

Please provide the following information:

  • A complete (i.e. we can run it), minimal program demonstrating the problem. No need to supply a project file.
  • Confluent.Kafka nuget version.
  • Apache Kafka version.
  • Client configuration.
  • Operating system.
  • Provide logs (with "debug" : "..." as necessary in configuration).
  • Provide broker log excerpts.
  • Critical issue.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions