Skip to content

Commit 0ff9b1e

Browse files
committed
fix(core): Revert drain limit
1 parent 8ce4e96 commit 0ff9b1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dd-trace-core/src/main/java/datadog/trace/core/PendingTraceBuffer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ public void run() {
245245

246246
if (pendingTrace instanceof FlushElement) {
247247
// Since this is an MPSC queue, the drain needs to be called on the consumer thread
248-
queue.drain(WriteDrain.WRITE_DRAIN, 50);
248+
queue.drain(WriteDrain.WRITE_DRAIN);
249249
flushCounter.incrementAndGet();
250250
continue;
251251
}

0 commit comments

Comments
 (0)