Skip to content

Commit ffdad58

Browse files
committed
format
1 parent 5d7a98e commit ffdad58

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/sink/ProbeStatusSink.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ public ProbeStatusSink(Config config, String diagnosticsEndpoint, boolean useMul
5555
this.diagnosticUploader = diagnosticUploader;
5656
this.useMultiPart = useMultiPart;
5757
this.messageBuilder = new Builder(config);
58-
this.interval = Duration.ofMillis((long) (config.getDynamicInstrumentationDiagnosticsInterval() * 1000));
58+
this.interval =
59+
Duration.ofMillis((long) (config.getDynamicInstrumentationDiagnosticsInterval() * 1000));
5960
this.batchSize = config.getDynamicInstrumentationUploadBatchSize();
6061
this.queue = new ArrayBlockingQueue<>(2 * this.batchSize);
6162
this.isInstrumentTheWorld = config.isDynamicInstrumentationInstrumentTheWorld();

0 commit comments

Comments
 (0)