Skip to content

Commit

Permalink
refactor(flags): remove unused SYSTEM parameter
Browse files Browse the repository at this point in the history
Remove the unnecessary SYSTEM parameter in the flag definition for `use-legacy-trust-store` to clean up the code and avoid confusion.
  • Loading branch information
esolitos authored and gitbutler-client committed Dec 6, 2024
1 parent 9ced82a commit 8920d55
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions flags/src/main/java/com/yahoo/vespa/flags/Flags.java
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,7 @@ public class Flags {
"use-legacy-trust-store", true,
List.of("marlon"), "2024-12-05", "2025-02-01",
"Use legacy trust store for CA, or new one",
"Takes effect on restart of OCI containers",
SYSTEM);
"Takes effect on restart of OCI containers");

/** WARNING: public for testing: All flags should be defined in {@link Flags}. */
public static UnboundBooleanFlag defineFeatureFlag(String flagId, boolean defaultValue, List<String> owners,
Expand Down

0 comments on commit 8920d55

Please sign in to comment.