Skip to content

Commit db95e6e

Browse files
committed
fix exception info print
1 parent 782783f commit db95e6e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/alipay/oceanbase/rpc/bolt/transport/ObTableConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public void checkStatus() throws Exception {
252252
if (!connection.getChannel().isWritable()) {
253253
throw new ObTableConnectionUnWritableException(
254254
"Check connection failed for address: " + connection.getUrl()
255-
+ ", maybe write overflow! channel used buffer size:" + connection.getChannel().bytesBeforeWritable());
255+
+ ", maybe write overflow! Overflow bytes:" + connection.getChannel().bytesBeforeWritable());
256256
}
257257
}
258258
}

0 commit comments

Comments
 (0)