Skip to content

Commit

Permalink
fix(jans-auth-server): WebApplicationException is not propagated out …
Browse files Browse the repository at this point in the history
…of "Update Token" script #3996 (#3997)
  • Loading branch information
yuriyz authored Feb 28, 2023
1 parent 5a55aa7 commit d561f14
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,8 @@ public IdToken createIdToken(
metricService.incCounter(MetricType.TOKEN_ID_TOKEN_COUNT);

return idToken;
} catch (WebApplicationException e) {
throw e;
} catch (Exception e) {
log.error(e.getMessage(), e);
return null;
Expand Down

0 comments on commit d561f14

Please sign in to comment.