Skip to content

Commit 2828321

Browse files
[otlp] Fix .NET Framework gRPC Export Client Default Success Response Status (open-telemetry#6099)
1 parent 2929537 commit 2828321

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/OpenTelemetry.Exporter.OpenTelemetryProtocol/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

1217
Released 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

src/OpenTelemetry.Exporter.OpenTelemetryProtocol/Implementation/ExportClient/GrpcExportClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace OpenTelemetry.Exporter.OpenTelemetryProtocol.Implementation.ExportClie
1515
internal 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,

0 commit comments

Comments
 (0)