Github user sudheeshkatkam commented on a diff in the pull request:
https://github.com/apache/drill/pull/578#discussion_r102396712
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/rpc/control/ControlClient.java
---
@@ -105,8 +128,83 @@ protected void finalizeConnection(BitControlHandshake
handshake, ControlConnecti
connection.setEndpoint(handshake.getEndpoint());
}
- public ControlConnection getConnection() {
- return this.connection;
+ @Override
+ protected <M extends MessageLite> RpcCommand<M, ControlConnection>
+ getInitialCommand(final RpcCommand<M, ControlConnection> command) {
+ if (config.getAuthMechanismToUse() == null) {
+ return super.getInitialCommand(command);
+ } else {
+ return new AuthenticationCommand<>(command);
--- End diff --
Thanks for the catch.
---
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.
---