Skip to content

Commit

Permalink
[PLAT-13794]: Hide autoflags from user while listing gflags in UI.
Browse files Browse the repository at this point in the history
Summary: Hide autoflags from users while listing gflags in UI.

Test Plan: validated in UI that autoflags are not available in UI after changes.

Reviewers: asharma, #yba-api-review, dkumar

Reviewed By: asharma, #yba-api-review, dkumar

Subscribers: yugaware

Differential Revision: https://phorge.dev.yugabyte.com/D34719
  • Loading branch information
vipul-yb committed May 3, 2024
1 parent 97e9c23 commit a8955ad
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public class GFlagsValidationHandler {

public static final Logger LOG = LoggerFactory.getLogger(GFlagsValidationHandler.class);

public static final Set<String> GFLAGS_FILTER_TAGS = ImmutableSet.of("experimental", "hidden");
public static final Set<String> GFLAGS_FILTER_TAGS =
ImmutableSet.of("experimental", "hidden", "auto");

public static final Set<Pattern> GFLAGS_FILTER_PATTERN =
ImmutableSet.of(
Expand Down

0 comments on commit a8955ad

Please sign in to comment.