Repository: incubator-impala Updated Branches: refs/heads/master 11ec9f195 -> e2532a96c
IMPALA-5492: Fix incorrect newline character in the LDAP message The introduction has redundant '\' in impala-shell when using LDAP. I fix this issue by removing extraneous '\' in introduction when impala-shell using LDAP. Change-Id: I30c601ab255a4882260f7be23b5763ef8ec76d28 Reviewed-on: http://gerrit.cloudera.org:8080/7166 Reviewed-by: Bharath Vissapragada <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/9ef5ad48 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/9ef5ad48 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/9ef5ad48 Branch: refs/heads/master Commit: 9ef5ad48a878f77fd78965d9d97920cfae88bd5f Parents: 11ec9f1 Author: davidxdh <[email protected]> Authored: Tue Jun 13 11:21:25 2017 +0800 Committer: Impala Public Jenkins <[email protected]> Committed: Wed Jun 14 08:26:29 2017 +0000 ---------------------------------------------------------------------- shell/impala_shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/9ef5ad48/shell/impala_shell.py ---------------------------------------------------------------------- diff --git a/shell/impala_shell.py b/shell/impala_shell.py index d3495f7..d143ef1 100755 --- a/shell/impala_shell.py +++ b/shell/impala_shell.py @@ -1388,7 +1388,7 @@ if __name__ == "__main__": intro = WELCOME_STRING if not options.ssl and options.creds_ok_in_clear and options.use_ldap: - intro += ("\n\\nLDAP authentication is enabled, but the connection to Impala is " + + intro += ("\n\nLDAP authentication is enabled, but the connection to Impala is " "not secured by TLS.\nALL PASSWORDS WILL BE SENT IN THE CLEAR TO IMPALA.\n") shell = ImpalaShell(options)
