File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/OpenTelemetry.Exporter.OpenTelemetryProtocol
Implementation/ExportClient Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,18 @@ Notes](../../RELEASENOTES.md).
77
88## Unreleased
99
10+ * Fixed a bug in .NET Framework gRPC export client where the default success
11+ export response was incorrectly marked as false, now changed to true, ensuring
12+ exports are correctly marked as successful.
13+ ([ #6099 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/pull/6099 ) )
14+
1015## 1.11.1
1116
1217Released 2025-Jan-22
1318
1419* Fixed an issue where the OTLP gRPC exporter did not export logs, metrics, or
1520 traces in .NET Framework projects.
16- ([ #6067 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/issues/6067 ) )
21+ ([ #6083 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/pull/6083 ) )
1722
1823## 1.11.0
1924
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ namespace OpenTelemetry.Exporter.OpenTelemetryProtocol.Implementation.ExportClie
1515internal sealed class GrpcExportClient : IExportClient
1616{
1717 private static readonly ExportClientGrpcResponse SuccessExportResponse = new (
18- success : false ,
18+ success : true ,
1919 deadlineUtc : default ,
2020 exception : null ,
2121 status : null ,
You can’t perform that action at this time.
0 commit comments