Skip to content

Commit

Permalink
fix: added actuator endpoint to enable logs in runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
tkuzynow committed Nov 29, 2024
1 parent 1365160 commit 1f52f9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class HttpTenantFilter extends OncePerRequestFilter {
private final @Nullable TenantService tenantService;

private static final String[] TENANCY_FILTER_WHITELIST =
new String[] {"/actuator/health", "/actuator/health/**", "/swagger-ui.html", "/favicon.ico"};
new String[] {"/actuator/health", "/actuator/health/**", "/actuator/loggers/**", "/actuator/loggers", "/swagger-ui.html", "/favicon.ico"};

private final DefaultRequiresTenantFilterMatcher requiresTenantFilterMatcher =
new DefaultRequiresTenantFilterMatcher();
Expand Down

0 comments on commit 1f52f9b

Please sign in to comment.