Skip to content

Commit 3559b74

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 289235e commit 3559b74

File tree

1 file changed

+4
-1
lines changed
  • x-pack/plugin/downsample/src/internalClusterTest/java/org/elasticsearch/xpack/downsample

1 file changed

+4
-1
lines changed

x-pack/plugin/downsample/src/internalClusterTest/java/org/elasticsearch/xpack/downsample/DownsampleIT.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,10 @@ public void testAggMetricInEsqlTSAfterDownsampling() throws Exception {
300300
for (String innerCommand : List.of("rate")) {
301301
String command = outerCommand + " (" + innerCommand + "(request))";
302302
String esqlQuery = "TS " + dataStreamName + " | STATS " + command + " by cluster, bucket(@timestamp, 1 hour)";
303-
try (var resp = client().execute(EsqlQueryAction.INSTANCE, new EsqlQueryRequest().query(esqlQuery).pragmas(ratePragmas)).actionGet(30, TimeUnit.SECONDS)) {
303+
try (
304+
var resp = client().execute(EsqlQueryAction.INSTANCE, new EsqlQueryRequest().query(esqlQuery).pragmas(ratePragmas))
305+
.actionGet(30, TimeUnit.SECONDS)
306+
) {
304307
var columns = resp.columns();
305308
assertThat(columns, hasSize(3));
306309
assertThat(

0 commit comments

Comments
 (0)