You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="maxExportBatchSize">The maximum batch size of every export. It must be smaller or equal to maxQueueSize. The default value is 512.</param>
Copy file name to clipboardExpand all lines: src/OpenTelemetry/Logs/Processor/BatchLogRecordExportProcessor.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,11 @@ public BatchLogRecordExportProcessor(
27
27
intmaxExportBatchSize)
28
28
:this(
29
29
exporter,
30
-
true,
31
30
maxQueueSize,
32
31
scheduledDelayMilliseconds,
33
32
exporterTimeoutMilliseconds,
34
-
maxExportBatchSize)
33
+
maxExportBatchSize,
34
+
true)
35
35
{
36
36
}
37
37
@@ -46,18 +46,18 @@ public BatchLogRecordExportProcessor(
46
46
/// <param name="maxExportBatchSize">The maximum batch size of every export. It must be smaller or equal to maxQueueSize. The default value is 512.</param>
0 commit comments