Skip to content

Commit dfac396

Browse files
committed
Remove "frozen" from read only tests (#70173)
The action was recently removed from the list of acceptable actions (#70158), the test shouldn't use it any more.
1 parent 3df17b6 commit dfac396

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/ilm/qa/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/ilm/actions

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void testReadOnly() throws Exception {
5353
createIndexWithSettings(client(), index, alias, Settings.builder()
5454
.put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1)
5555
.put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 0));
56-
String phaseName = randomFrom("warm", "cold", "frozen");
56+
String phaseName = randomFrom("warm", "cold");
5757
createNewSingletonPolicy(client(), policy, phaseName, new ReadOnlyAction());
5858
updatePolicy(client(), index, policy);
5959
assertBusy(() -> {

0 commit comments

Comments
 (0)