Skip to content

Commit

Permalink
[otlp] Fix .NET Framework gRPC Export Client Default Success Response…
Browse files Browse the repository at this point in the history
… Status (#6099)
  • Loading branch information
rajkumar-rangaraj authored Jan 24, 2025
1 parent 2929537 commit 2828321
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@ Notes](../../RELEASENOTES.md).

## Unreleased

* Fixed a bug in .NET Framework gRPC export client where the default success
export response was incorrectly marked as false, now changed to true, ensuring
exports are correctly marked as successful.
([#6099](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6099))

## 1.11.1

Released 2025-Jan-22

* Fixed an issue where the OTLP gRPC exporter did not export logs, metrics, or
traces in .NET Framework projects.
([#6067](https://github.com/open-telemetry/opentelemetry-dotnet/issues/6067))
([#6083](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6083))

## 1.11.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace OpenTelemetry.Exporter.OpenTelemetryProtocol.Implementation.ExportClie
internal sealed class GrpcExportClient : IExportClient
{
private static readonly ExportClientGrpcResponse SuccessExportResponse = new(
success: false,
success: true,
deadlineUtc: default,
exception: null,
status: null,
Expand Down

0 comments on commit 2828321

Please sign in to comment.