Skip to content

Commit

Permalink
Merge pull request #24141 from vespa-engine/freva/wtd-recursive
Browse files Browse the repository at this point in the history
Make wantToDeprovision recursive
  • Loading branch information
hakonhall authored Sep 20, 2022
2 parents f0ff25c + 5c8372e commit 5f30852
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class NodePatcher {
private static final String WANT_TO_RETIRE = "wantToRetire";
private static final String WANT_TO_DEPROVISION = "wantToDeprovision";
private static final String WANT_TO_REBUILD = "wantToRebuild";
private static final Set<String> RECURSIVE_FIELDS = Set.of(WANT_TO_RETIRE);
private static final Set<String> RECURSIVE_FIELDS = Set.of(WANT_TO_RETIRE, WANT_TO_DEPROVISION);
private static final Set<String> IP_CONFIG_FIELDS = Set.of("ipAddresses",
"additionalIpAddresses",
"additionalHostnames");
Expand Down

0 comments on commit 5f30852

Please sign in to comment.