Skip to content

Commit

Permalink
Fixed auth fail exclude update
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchiecarroll committed Jul 3, 2023
1 parent 2cd01ab commit 93c99f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ protected override void ServiceStartingHandler(object sender, EventArgs<string[]
authFailureRedirectResourceExpressionUpdated = true;
}

if (!anonymousResourceExpression.ToLowerInvariant().Contains(NewGrafanaAuthFailExcludeExpression.ToLowerInvariant()))
if (!authFailureRedirectResourceExpression.ToLowerInvariant().Contains(NewGrafanaAuthFailExcludeExpression.ToLowerInvariant()))
{
authFailureRedirectResourceExpression = $"{authFailureRedirectResourceExpression}|{NewGrafanaAuthFailExcludeExpression}";
authFailureRedirectResourceExpressionUpdated = true;
Expand Down

0 comments on commit 93c99f7

Please sign in to comment.