Skip to content

Commit

Permalink
fix(oxauth): allow propagate WebApplicationException out of "Update T…
Browse files Browse the repository at this point in the history
…oken" script #1760
  • Loading branch information
yuriyz committed Feb 28, 2023
1 parent 1ad8b17 commit 5c48bc8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,8 @@ public IdToken createIdToken(
metricService.incCounter(MetricType.OXAUTH_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 5c48bc8

Please sign in to comment.