Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions buildSrc/.kotlin/errors/errors-1752554527608.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
kotlin version: 2.0.20
error message: The daemon has terminated unexpectedly on startup attempt #1 with error code: 0. The daemon process output:
1. Kotlin compile daemon is ready

Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
import com.azure.monitor.opentelemetry.autoconfigure.implementation.quickpulse.swagger.models.Request;
import com.azure.monitor.opentelemetry.autoconfigure.implementation.quickpulse.swagger.models.Trace;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;

public class LiveMetricsVerifier {

private final List<MonitoringDataPoint> points = new ArrayList<>();
private final List<MonitoringDataPoint> points = new CopyOnWriteArrayList<>();

public void apply(String postBody) throws IOException {
List<MonitoringDataPoint> dataPoints;
Expand Down