Skip to content

Commit 5b71238

Browse files
committed
Fix compilation
1 parent 5f94bb5 commit 5b71238

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

exporters/otlp/all/src/main/java/io/opentelemetry/exporter/otlp/logs/OtlpGrpcLogRecordExporterBuilder.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ public final class OtlpGrpcLogRecordExporterBuilder {
6161
OtlpGrpcLogRecordExporterBuilder() {
6262
this(
6363
new GrpcExporterBuilder<>(
64-
"otlp",
65-
ComponentId.StandardExporterType.Signal.LOG,
6664
ComponentId.StandardExporterType.OTLP_GRPC_LOG_EXPORTER,
6765
DEFAULT_TIMEOUT_SECS,
6866
DEFAULT_ENDPOINT,

exporters/otlp/all/src/main/java/io/opentelemetry/exporter/otlp/trace/OtlpGrpcSpanExporterBuilder.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ public final class OtlpGrpcSpanExporterBuilder {
5757
OtlpGrpcSpanExporterBuilder() {
5858
this(
5959
new GrpcExporterBuilder<>(
60-
"otlp",
61-
ComponentId.StandardExporterType.Signal.SPAN,
6260
ComponentId.StandardExporterType.OTLP_GRPC_LOG_EXPORTER,
6361
DEFAULT_TIMEOUT_SECS,
6462
DEFAULT_ENDPOINT,

exporters/zipkin/src/main/java/io/opentelemetry/exporter/zipkin/ZipkinSpanExporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public final class ZipkinSpanExporter implements SpanExporter {
6363

6464
ComponentId.StandardExporterType exporterType;
6565
if (sender.encoding() == Encoding.JSON) {
66-
exporterType = ComponentId.StandardExporterType.ZIPKIN_HTTP_SPAN_EXPORTER;
66+
exporterType = ComponentId.StandardExporterType.ZIPKIN_HTTP_JSON_SPAN_EXPORTER;
6767
} else {
6868
exporterType = ComponentId.StandardExporterType.ZIPKIN_HTTP_SPAN_EXPORTER;
6969
}

0 commit comments

Comments
 (0)