Skip to content

Commit

Permalink
Merge pull request #26797 from gsmet/throw-original-exception
Browse files Browse the repository at this point in the history
SmallRye GraphQL - Throw the original throwable on error
  • Loading branch information
sberyozkin authored Jul 18, 2022
2 parents fffd884 + 45e4b63 commit 173a975
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public void handle(final RoutingContext ctx) {
handleWithIdentity(ctx);
} catch (Throwable t) {
currentManagedContext.terminate();
throw t;
}
}
}
Expand Down

0 comments on commit 173a975

Please sign in to comment.