Github user sudheeshkatkam commented on a diff in the pull request:
https://github.com/apache/drill/pull/773#discussion_r115037769
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/rpc/AbstractServerConnection.java
---
@@ -110,7 +131,18 @@ public void changeHandlerTo(final RequestHandler<S>
handler) {
}
@Override
- public void close() {
+ public void setEncryption(boolean encrypted) {
+ throw new UnsupportedOperationException("Changing encryption setting
on server connection is not permitted.");
+ }
+
+ @Override
+ public void setMaxWrappedSize(int maxWrappedChunkSize) {
--- End diff --
maxWrappedChunkSize -> maxWrappedSize; in argument and message
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---