Skip to content

Commit dbb2f06

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent d566b9a commit dbb2f06

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

x-pack/plugin/ilm/qa/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/ilm/actions/DownsampleActionIT.java

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,12 @@ public void testRollupIndex() throws Exception {
196196
// Create the ILM policy
197197
String phaseName = randomFrom("warm", "cold");
198198
DateHistogramInterval fixedInterval = ConfigTestHelpers.randomInterval();
199-
createNewSingletonPolicy(client(), policy, phaseName, new DownsampleAction(fixedInterval, DownsampleAction.DEFAULT_WAIT_TIMEOUT, null));
199+
createNewSingletonPolicy(
200+
client(),
201+
policy,
202+
phaseName,
203+
new DownsampleAction(fixedInterval, DownsampleAction.DEFAULT_WAIT_TIMEOUT, null)
204+
);
200205

201206
// Create a time series index managed by the policy
202207
createIndex(index, alias, policy, true);
@@ -307,7 +312,12 @@ public void testRollupIndexInTheHotPhaseAfterRollover() throws Exception {
307312
public void testTsdbDataStreams() throws Exception {
308313
// Create the ILM policy
309314
DateHistogramInterval fixedInterval = ConfigTestHelpers.randomInterval();
310-
createNewSingletonPolicy(client(), policy, "warm", new DownsampleAction(fixedInterval, DownsampleAction.DEFAULT_WAIT_TIMEOUT, null));
315+
createNewSingletonPolicy(
316+
client(),
317+
policy,
318+
"warm",
319+
new DownsampleAction(fixedInterval, DownsampleAction.DEFAULT_WAIT_TIMEOUT, null)
320+
);
311321

312322
// Create a template
313323
Request createIndexTemplateRequest = new Request("POST", "/_index_template/" + dataStream);
@@ -355,7 +365,12 @@ public void testTsdbDataStreams() throws Exception {
355365
public void testILMWaitsForTimeSeriesEndTimeToLapse() throws Exception {
356366
// Create the ILM policy
357367
DateHistogramInterval fixedInterval = ConfigTestHelpers.randomInterval();
358-
createNewSingletonPolicy(client(), policy, "warm", new DownsampleAction(fixedInterval, DownsampleAction.DEFAULT_WAIT_TIMEOUT, null));
368+
createNewSingletonPolicy(
369+
client(),
370+
policy,
371+
"warm",
372+
new DownsampleAction(fixedInterval, DownsampleAction.DEFAULT_WAIT_TIMEOUT, null)
373+
);
359374

360375
// Create a template
361376
Request createIndexTemplateRequest = new Request("POST", "/_index_template/" + dataStream);
@@ -398,7 +413,12 @@ public void testRollupNonTSIndex() throws Exception {
398413
// Create the ILM policy
399414
String phaseName = randomFrom("warm", "cold");
400415
DateHistogramInterval fixedInterval = ConfigTestHelpers.randomInterval();
401-
createNewSingletonPolicy(client(), policy, phaseName, new DownsampleAction(fixedInterval, DownsampleAction.DEFAULT_WAIT_TIMEOUT, null));
416+
createNewSingletonPolicy(
417+
client(),
418+
policy,
419+
phaseName,
420+
new DownsampleAction(fixedInterval, DownsampleAction.DEFAULT_WAIT_TIMEOUT, null)
421+
);
402422

403423
// Create a non TSDB managed index
404424
createIndex(index, alias, policy, false);

x-pack/plugin/sql/sql-action/src/main/java/org/elasticsearch/xpack/sql/action/AbstractSqlQueryRequest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
*/
77
package org.elasticsearch.xpack.sql.action;
88

9-
import org.elasticsearch.TransportVersions;
109
import org.elasticsearch.action.ActionRequestValidationException;
1110
import org.elasticsearch.action.CompositeIndicesRequest;
1211
import org.elasticsearch.common.Strings;

0 commit comments

Comments
 (0)