Skip to content

Commit

Permalink
restore abort for SendCallback.failed
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <lachlan.p.roberts@gmail.com>
  • Loading branch information
lachlan-roberts committed Nov 26, 2024
1 parent 006ffb1 commit f0f5e1b
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 f0f5e1b

Please sign in to comment.