You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tomas-langer opened this issue
Apr 4, 2023
· 1 comment
· Fixed by #6699
Assignees
Labels
3.xIssues for 3.x version branchbugSomething isn't workingP2team-fixThis issue is available for team members to be fixed. Should not require deep knowledge of Helidonwebserver
When next(Throwable) is called, the implementation class RequestRouting calls checkNexted() without a parameter.
As a result, if checkNexted() fails, we lose the original throwable.
The fix is to call checkNexted(Throwable) instead.
This happens if you call next() and next(someThrowable) -> the someThrowable is lost
The text was updated successfully, but these errors were encountered:
tomas-langer
added
bug
Something isn't working
webserver
3.x
Issues for 3.x version branch
team-fix
This issue is available for team members to be fixed. Should not require deep knowledge of Helidon
labels
Apr 4, 2023
romain-grecourt
changed the title
3.x: Request routing does not propagate throwable from next(Throwable)
Request routing does not propagate throwable from next(Throwable)
Apr 26, 2023
3.xIssues for 3.x version branchbugSomething isn't workingP2team-fixThis issue is available for team members to be fixed. Should not require deep knowledge of Helidonwebserver
When
next(Throwable)
is called, the implementation classRequestRouting
callscheckNexted()
without a parameter.As a result, if
checkNexted()
fails, we lose the original throwable.The fix is to call
checkNexted(Throwable)
instead.This happens if you call
next()
andnext(someThrowable)
-> thesomeThrowable
is lostThe text was updated successfully, but these errors were encountered: