Skip to content

Commit

Permalink
reword
Browse files Browse the repository at this point in the history
  • Loading branch information
tlrx committed Jan 24, 2025
1 parent 2c21630 commit c3904b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ private static void verifyReadOnlyIndices(@Nullable Set<Index> readOnlyIndices,
for (Index readOnlyIndex : readOnlyIndices) {
if (blocks.indexBlocked(ClusterBlockLevel.WRITE, readOnlyIndex.getName()) == false) {
throw new IllegalArgumentException(
String.format(Locale.ROOT, "Can't remove the `write` level block for read-only compatible index %s", readOnlyIndex)
String.format(Locale.ROOT, "Can't remove the write block on read-only compatible index %s", readOnlyIndex)
);
}
}
Expand Down

0 comments on commit c3904b3

Please sign in to comment.