We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71448cd commit 2cee7c5Copy full SHA for 2cee7c5
src/humanloop/otel/exporter.py
@@ -1,6 +1,7 @@
1
import logging
2
import threading
3
4
+import time
5
import typing
6
from queue import Empty as EmptyQueue
7
from queue import Queue
@@ -153,6 +154,7 @@ def _do_work(self):
153
154
) # type: ignore
155
except EmptyQueue:
156
# Wait for the another span to arrive
157
+ time.sleep(0.1)
158
continue
159
160
span_to_export, evaluation_context = thread_args
0 commit comments