File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/trace/export Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
35
35
([ #2154 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2154 ) )
36
36
- Make baggage implementation w3c spec complaint
37
37
([ #2167 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2167 ) )
38
+ - Add name to ` BatchSpanProcessor ` worker thread
39
+ ([ #2186 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/2186 ) )
38
40
39
41
## [ 1.5.0-0.24b0] ( https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.5.0-0.24b0 ) - 2021-08-26
40
42
Original file line number Diff line number Diff line change @@ -175,7 +175,9 @@ def __init__(
175
175
self .queue = collections .deque (
176
176
[], max_queue_size
177
177
) # type: typing.Deque[Span]
178
- self .worker_thread = threading .Thread (target = self .worker , daemon = True )
178
+ self .worker_thread = threading .Thread (
179
+ name = "OtelBatchSpanProcessor" , target = self .worker , daemon = True
180
+ )
179
181
self .condition = threading .Condition (threading .Lock ())
180
182
self ._flush_request = None # type: typing.Optional[_FlushRequest]
181
183
self .schedule_delay_millis = schedule_delay_millis
You can’t perform that action at this time.
0 commit comments