Github user parthchandra commented on a diff in the pull request: https://github.com/apache/drill/pull/950#discussion_r140603757 --- 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 -- Sure. (Don't even remember writing this code)
---