Skip to content

Commit

Permalink
update jwt guard event message
Browse files Browse the repository at this point in the history
  • Loading branch information
vordimous committed Jun 3, 2024
1 parent f3ccc93 commit c45effe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public String format(
case AUTHORIZATION_FAILED:
{
JwtAuthorizationFailedExFW ex = extension.authorizationFailed();
result = String.format("%s", identity(ex.identity()));
result = String.format("No active session found for token identity (%s).", identity(ex.identity()));
break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ telemetry:
- qname: test.net0
id: guard.jwt.authorization.failed
name: GUARD_JWT_AUTHORIZATION_FAILED
message: user
message: No active session found for token identity (user).
guards:
jwt0:
type: jwt
Expand Down

0 comments on commit c45effe

Please sign in to comment.