Skip to content

Commit c8d3424

Browse files
Fix test
1 parent 5938512 commit c8d3424

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/telemetry/PlanExecutorMetricsTests.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@ public void testSettingsMetric() throws Exception {
272272
mockQueryLog(),
273273
List.of(),
274274
Settings.EMPTY,
275-
dataSourceModule
275+
dataSourceModule,
276+
List.of()
276277
);
277278

278279
// Initial values should be 0
@@ -372,7 +373,8 @@ public void testSettingsMetricDeduplication() throws Exception {
372373
mockQueryLog(),
373374
List.of(),
374375
Settings.EMPTY,
375-
dataSourceModule
376+
dataSourceModule,
377+
List.of()
376378
);
377379

378380
// Initial value should be 0
@@ -450,7 +452,8 @@ public void testApproximationSettingMetric() throws Exception {
450452
mockQueryLog(),
451453
List.of(),
452454
Settings.EMPTY,
453-
dataSourceModule
455+
dataSourceModule,
456+
List.of()
454457
);
455458

456459
// Initial value should be 0
@@ -519,7 +522,8 @@ public void testProjectRoutingSettingNotAllowedInStateful() throws Exception {
519522
mockQueryLog(),
520523
List.of(),
521524
Settings.EMPTY,
522-
dataSourceModule
525+
dataSourceModule,
526+
List.of()
523527
);
524528

525529
// In stateful mode, project_routing metric should not be registered at all

0 commit comments

Comments
 (0)