Skip to content

Commit

Permalink
Remove "frozen" from read only tests (elastic#70173)
Browse files Browse the repository at this point in the history
The action was recently removed from the list of acceptable actions (elastic#70158), the test shouldn't use
it any more.
  • Loading branch information
dakrone committed Mar 9, 2021
1 parent df8a420 commit 53bf5f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(() -> {
Expand Down

0 comments on commit 53bf5f4

Please sign in to comment.