Hardy Hobeck
Hardy Hobeck
Please migrate your pipeline to the new version of git version [6.0.1](https://github.com/GitTools/GitVersion/releases/tag/6.0.1). If this error persists, please create a new ticket. Thank you!
I see also the usage of HttpClient in combination with the usage of HttpMessageHandler problematic: https://github.com/serilog/serilog-sinks-opentelemetry/blob/8aba13239a2b11bab6265a586776eed961e025a4/src/Serilog.Sinks.OpenTelemetry/Sinks/OpenTelemetry/Exporters/GrpcExporter.cs#L53 Better would be to use the IHttpClientFactory or inject the HttpClient via constructor. (see...
@lmolkova Instead of: ```csharp Baggage.Current.SetBaggage(kvp.Key, kvp.Value); ``` you should write: ```csharp Baggage.SetBaggage(kvp.Key, kvp.Value); ``` because the baggage might be not initialized. - https://github.com/open-telemetry/opentelemetry-dotnet/issues/6057#issuecomment-2588820643