Github user sohami commented on a diff in the pull request: https://github.com/apache/drill/pull/950#discussion_r140397110 --- Diff: exec/java-exec/src/main/java/org/apache/drill/exec/rpc/user/UserConnectionConfig.java --- @@ -75,10 +76,20 @@ } else { authEnabled = false; } - impersonationManager = !config.getBoolean(ExecConstants.IMPERSONATION_ENABLED) ? null : new InboundImpersonationManager(); + + if (config.getBoolean(ExecConstants.USER_SSL_ENABLED)) { + sslEnabled = true; + } else { + sslEnabled = false; + } --- End diff -- `sslEnabled = config.getBoolean(ExecConstants.USER_SSL_ENABLED);`
---