Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnvg committed May 14, 2024
1 parent be1395b commit 9da2048
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,12 @@ protected void masterOperation(
try {
boolean hasRollupIndices = hasRollupIndices(clusterState);
if (hasRollupIndices == false) {
listener.onFailure(new IllegalArgumentException("rollup has been deprecated and will be removed, therefor starting " +
"from 8.15.0, creating new rollup jobs is no longer allowed in clusters that don't have any rollup usage."));
listener.onFailure(
new IllegalArgumentException(
"rollup has been deprecated and will be removed, therefor starting "
+ "from 8.15.0, creating new rollup jobs is no longer allowed in clusters that don't have any rollup usage."
)
);
return;
}
} catch (IOException e) {
Expand Down

0 comments on commit 9da2048

Please sign in to comment.