File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
opentelemetry-sdk/src/opentelemetry/sdk/trace/export Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
26
- Add urllib to opentelemetry-bootstrap target list
27
27
([ #1584 ] )(https://github.com/open-telemetry/opentelemetry-python/pull/1584 )
28
28
29
-
30
29
### Changed
31
30
- Read-only Span attributes have been moved to ReadableSpan class
32
31
([ #1560 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/1560 ) )
32
+ - ` BatchExportSpanProcessor ` flushes export queue when it reaches ` max_export_batch_size `
33
+ ([ #1521 ] )(https://github.com/open-telemetry/opentelemetry-python/pull/1521 )
33
34
34
35
### Removed
35
36
- Remove Configuration
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ def on_end(self, span: ReadableSpan) -> None:
200
200
201
201
self .queue .appendleft (span )
202
202
203
- if len (self .queue ) >= self .max_queue_size // 2 :
203
+ if len (self .queue ) >= self .max_export_batch_size :
204
204
with self .condition :
205
205
self .condition .notify ()
206
206
You can’t perform that action at this time.
0 commit comments