You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[BUG] The thread context is not properly cleared and messes up the traces (#10873)
* [BUG] The thread context is not properly cleared and messes up the traces
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
* Address code review comments
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
* Address code review comments
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
---------
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
90
90
- Fix 'org.apache.hc.core5.http.ParseException: Invalid protocol version' under JDK 16+ ([#4827](https://github.com/opensearch-project/OpenSearch/pull/4827))
91
91
- Fix compression support for h2c protocol ([#4944](https://github.com/opensearch-project/OpenSearch/pull/4944))
92
92
- Don't over-allocate in HeapBufferedAsyncEntityConsumer in order to consume the response ([#9993](https://github.com/opensearch-project/OpenSearch/pull/9993))
93
+
-[BUG] Fix the thread context that is not properly cleared and messes up the traces ([#10873](https://github.com/opensearch-project/OpenSearch/pull/10873))
Copy file name to clipboardexpand all lines: plugins/telemetry-otel/src/internalClusterTest/java/org/opensearch/telemetry/tracing/TelemetryTracerEnabledSanityIT.java
+13-9
Original file line number
Diff line number
Diff line change
@@ -61,20 +61,22 @@ public void testSanityChecksWhenTracingEnabled() throws Exception {
Copy file name to clipboardexpand all lines: plugins/telemetry-otel/src/test/java/org/opensearch/telemetry/tracing/OTelTracingContextPropagatorTests.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@
11
11
importorg.opensearch.test.OpenSearchTestCase;
12
12
13
13
importjava.util.Arrays;
14
+
importjava.util.Collection;
14
15
importjava.util.HashMap;
15
-
importjava.util.List;
16
16
importjava.util.Map;
17
17
18
18
importio.opentelemetry.api.OpenTelemetry;
@@ -57,7 +57,7 @@ public void testExtractTracerContextFromHeader() {
0 commit comments