Skip to content

Commit

Permalink
chore: fix lint/add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pichlermarc committed Jun 21, 2023
1 parent 3cdfb1b commit e3a6baf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ All notable changes to experimental packages in this project will be documented
### :rocket: (Enhancement)

* feat(otlp-grpc-exporters): add support for UDS endpoints. [#3853](https://github.com/open-telemetry/opentelemetry-js/pull/3853) @llc1123
* feat(otlp-exporters): bump otlp proto to 0.20.0 [#3932](https://github.com/open-telemetry/opentelemetry-js/pull/3932) @pichlermarc

### :bug: (Bug Fix)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@

import * as root from './generated/root';
import * as grpc from '@grpc/grpc-js';
import { IExportLogsServiceRequest, IExportLogsServiceResponse } from '@opentelemetry/otlp-transformer';
import {
IExportLogsServiceRequest,
IExportLogsServiceResponse,
} from '@opentelemetry/otlp-transformer';
import { ExportType } from './internal-types';

const responseType = root.opentelemetry.proto.collector.logs.v1
Expand Down
2 changes: 1 addition & 1 deletion experimental/packages/otlp-transformer/src/trace/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface IExportTraceServiceRequest {
}

export interface IExportTraceServiceResponse {
partialSuccess?: IExportTracePartialSuccess
partialSuccess?: IExportTracePartialSuccess;
}

export interface IExportTracePartialSuccess {
Expand Down

0 comments on commit e3a6baf

Please sign in to comment.