Skip to content

Commit aba88c7

Browse files
authored
Fix _export_batches docstring to remove incorrect "threshold" reference (#1287)
1 parent 2224d45 commit aba88c7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/agents/tracing/processors.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,7 @@ def _run(self):
269269

270270
def _export_batches(self, force: bool = False):
271271
"""Drains the queue and exports in batches. If force=True, export everything.
272-
Otherwise, export up to `max_batch_size` repeatedly until the queue is empty or below a
273-
certain threshold.
272+
Otherwise, export up to `max_batch_size` repeatedly until the queue is completely empty.
274273
"""
275274
while True:
276275
items_to_export: list[Span[Any] | Trace] = []

0 commit comments

Comments
 (0)