From 53bf5f4ceaa36e818d4d6a2cf513e2845b484eec Mon Sep 17 00:00:00 2001 From: Lee Hinman Date: Tue, 9 Mar 2021 12:44:29 -0700 Subject: [PATCH] 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. --- .../org/elasticsearch/xpack/ilm/actions/ReadonlyActionIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/ilm/qa/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/ilm/actions/ReadonlyActionIT.java b/x-pack/plugin/ilm/qa/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/ilm/actions/ReadonlyActionIT.java index 64974fd6bd455..e95a3e6e5903d 100644 --- a/x-pack/plugin/ilm/qa/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/ilm/actions/ReadonlyActionIT.java +++ b/x-pack/plugin/ilm/qa/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/ilm/actions/ReadonlyActionIT.java @@ -53,7 +53,7 @@ public void testReadOnly() throws Exception { createIndexWithSettings(client(), index, alias, Settings.builder() .put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1) .put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 0)); - String phaseName = randomFrom("warm", "cold", "frozen"); + String phaseName = randomFrom("warm", "cold"); createNewSingletonPolicy(client(), policy, phaseName, new ReadOnlyAction()); updatePolicy(client(), index, policy); assertBusy(() -> {