Skip to content

Commit 772d1e3

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 3bbe9ed commit 772d1e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/data-streams/src/test/java/org/elasticsearch/datastreams/MetadataIndexTemplateServiceTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,8 @@ private static DataStreamLifecycle.Downsampling randomNonEmptyDownsampling() {
271271
private static DataStreamLifecycle.Downsampling.Round nextRound(DataStreamLifecycle.Downsampling.Round previous) {
272272
var after = TimeValue.timeValueDays(previous.after().days() + randomIntBetween(1, 10));
273273
var fixedInterval = new DownsampleConfig(
274-
new DateHistogramInterval((previous.config().getFixedInterval().estimateMillis() * randomIntBetween(2, 5)) + "ms"), null
274+
new DateHistogramInterval((previous.config().getFixedInterval().estimateMillis() * randomIntBetween(2, 5)) + "ms"),
275+
null
275276
);
276277
return new DataStreamLifecycle.Downsampling.Round(after, fixedInterval);
277278
}

0 commit comments

Comments
 (0)