Skip to content

Commit ab1c1d2

Browse files
committed
#13198 add failure to ISE to help figuring out the cause
Signed-off-by: Ludovic Orban <[email protected]>
1 parent 9c37729 commit ab1c1d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jetty-ee9/jetty-ee9-nested/src/main/java/org/eclipse/jetty/ee9/nested/HttpChannelState.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,7 @@ protected void completed(Throwable failure)
10191019
LOG.debug("completed {}", toStringLocked());
10201020

10211021
if (_requestState != RequestState.COMPLETING)
1022-
throw new IllegalStateException(this.getStatusStringLocked());
1022+
throw new IllegalStateException(this.getStatusStringLocked(), failure);
10231023

10241024
if (_event == null)
10251025
{

0 commit comments

Comments
 (0)