Skip to content

Commit

Permalink
Fix recipients-resolver toggles prefix (RedHatInsights#2535)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenneg authored Mar 15, 2024
1 parent 657f824 commit 7ca2928
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class RecipientsResolverConfig {
private static final String FETCH_USERS_WITH_RBAC = toggleName("fetch-users-with-rbac");

private static String toggleName(String feature) {
return String.format("notifications-engine.%s.enabled", feature);
return String.format("notifications-recipients-resolver.%s.enabled", feature);
}

@ConfigProperty(name = UNLEASH, defaultValue = "false")
Expand Down

0 comments on commit 7ca2928

Please sign in to comment.