Skip to content

Commit

Permalink
Merge pull request #12579 from jetty/jetty-12.0.x-HttpChannel-SendCal…
Browse files Browse the repository at this point in the history
…lback-abort

restore abort for SendCallback.failed
  • Loading branch information
lachlan-roberts authored Dec 5, 2024
2 parents 741ac12 + f0f5e1b commit d650efe
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1435,6 +1435,13 @@ public void succeeded()
_response.getHttpOutput().completed(null);
super.failed(x);
}

@Override
public void failed(Throwable th)
{
abort(x);
super.failed(x);
}
});
}
else
Expand Down

0 comments on commit d650efe

Please sign in to comment.