Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void onUpstreamFinish() throws Exception {
}

@Override
public void onUpstreamFailure(final Throwable ex) throws Exception, Exception {
public void onUpstreamFailure(final Throwable ex) throws Exception {
// We will not receive any more requests from the server and TCP layer so stop
// sending them
fail(requestOutlet, ex);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private MarkSpanAsErroredPF() {}

@Override
public Function1<RequestContext, Future<RouteResult>> apply(Throwable x, boolean isCheck)
throws Exception, Exception {
throws Exception {
AgentSpan agentSpan = AgentTracer.activeSpan();
if (agentSpan != null) {
agentSpan.addThrowable(x);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void onUpstreamFinish() throws Exception {
}

@Override
public void onUpstreamFailure(final Throwable ex) throws Exception, Exception {
public void onUpstreamFailure(final Throwable ex) throws Exception {
// We will not receive any more requests from the server and TCP layer so stop
// sending them
fail(requestOutlet, ex);
Expand Down
Loading