Skip to content

Commit

Permalink
[BugFix] fix the misleading FE thrift rpc fail message (#52706)
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Xiaohua Cai <[email protected]>
  • Loading branch information
kevincai authored Nov 20, 2024
1 parent a4385a2 commit a41c514
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ public class ThriftRPCRequestExecutor {
if (i == tryTimes - 1 ||
!isConnValid ||
(te.getCause() instanceof SocketTimeoutException)) {
LOG.warn("Call frontend thrift rpc failed, addr: {}, retried: {}", address, i, te);
LOG.warn("Call thrift rpc failed, addr: {}, retried: {}", address, i, te);
throw te;
} else {
LOG.debug("Call frontend thrift rpc failed, addr: {}, retried: {}", address, i, te);
LOG.debug("Call thrift rpc failed, addr: {}, retried: {}", address, i, te);
}
}
}
Expand Down

0 comments on commit a41c514

Please sign in to comment.