milleruntime commented on a change in pull request #2273:
URL: https://github.com/apache/accumulo/pull/2273#discussion_r710281280
##########
File path:
core/src/main/java/org/apache/accumulo/core/clientImpl/ThriftTransportPool.java
##########
@@ -654,6 +655,31 @@ public void consumeBuffer(int len) {
}
}
+ @Override
+ public TConfiguration getConfiguration() {
+ return wrappedTransport.getConfiguration();
+ }
+
+ @Override
+ public void updateKnownMessageSize(long size) throws TTransportException {
+ try {
+ ioCount++;
Review comment:
Ah I guess that makes sense then. We just have to decide if those new
methods count as IO or not. I thought the 2 that were doing something with the
message would count as IO, while just calling `getConfiguration()` did not.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]