Skip to content

Commit bf78a81

Browse files
authored
Fix bsp delay (#2193)
1 parent b2c60e7 commit bf78a81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agent/agent-tooling/src/main/java/com/microsoft/applicationinsights/agent/internal/init/OpenTelemetryConfigurer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ private static BatchSpanProcessor createExporter(Configuration configuration) {
176176
builder.setMaxExportBatchSize(1);
177177
}
178178

179-
return builder.setScheduleDelay(Duration.ofMillis(100)).build();
179+
return builder.build();
180180
}
181181

182182
private static class BackCompatHttpUrlProcessor implements SpanExporter {

0 commit comments

Comments
 (0)