We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was playing around with the following example: https://github.com/confluentinc/confluent-kafka-dotnet/blob/master/examples/AvroSpecific/Program.cs using our schema registry.
I started getting a 404 from the schema registry.
SchemaRegistryUrl
https://xxx.dev/schema-registry
I tracked down the issue and it seems that there's some weird functionality when using HttpClient. Basically when adding prepending the / here:
HttpClient
/
confluent-kafka-dotnet/src/Confluent.SchemaRegistry/Rest/RestService.cs
Line 234 in 98edaaf
causes HttpClient to discard part of the url.
Please provide the following information:
The text was updated successfully, but these errors were encountered:
RestService.BaseAddress
Any news on this, please?
Sorry, something went wrong.
thanks for the PR! closing this issue in favor of that.
No branches or pull requests
Description
I was playing around with the following example: https://github.com/confluentinc/confluent-kafka-dotnet/blob/master/examples/AvroSpecific/Program.cs using our schema registry.
I started getting a 404 from the schema registry.
How to reproduce
SchemaRegistryUrl
tohttps://xxx.dev/schema-registry
-- Expected: https://xxx.dev/schema-registry/subjects/sucrose-external-value/versions
-- Actual: https://xxx.dev/subjects/sucrose-external-value/versions
I tracked down the issue and it seems that there's some weird functionality when using
HttpClient
. Basically when adding prepending the/
here:confluent-kafka-dotnet/src/Confluent.SchemaRegistry/Rest/RestService.cs
Line 234 in 98edaaf
causes
HttpClient
to discard part of the url.Checklist
Please provide the following information:
The text was updated successfully, but these errors were encountered: