-
Notifications
You must be signed in to change notification settings - Fork 880
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update azure-core-tracing-opentelemetry version and fix sync suppress…
…ion (#10350) Co-authored-by: Lauri Tulmin <[email protected]>
- Loading branch information
Showing
4 changed files
with
68 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...haded/src/main/java/com/azure/core/tracing/opentelemetry/OpenTelemetryTracingOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package com.azure.core.tracing.opentelemetry; | ||
|
||
import com.azure.core.util.TracingOptions; | ||
|
||
/** | ||
* Replace {@link OpenTelemetryTracingOptions} from com.azure:azure-core-tracing-opentelemetry with | ||
* a stub. Auto instrumentation does not use {@link OpenTelemetryTracingOptions}. This is needed | ||
* because {@link OpenTelemetryTracingOptions} calls super constructor in {@link TracingOptions} | ||
* that does exist in com.azure:azure-core:1.36.0 which triggers muzzle failure. | ||
*/ | ||
public class OpenTelemetryTracingOptions extends TracingOptions {} |