IMPALA-4702: Fix command line help for webserver_private_key_file The command line help for 'webserver_private_key_file' should refer to 'webserver_certificate_file' instead of 'ssl_server_certificate'.
Change-Id: Ie2820951b381240d5dab7c98e07e92332234462a Reviewed-on: http://gerrit.cloudera.org:8080/5552 Reviewed-by: Tim Armstrong <[email protected]> Tested-by: Internal 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/ba8c135e Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/ba8c135e Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/ba8c135e Branch: refs/heads/master Commit: ba8c135ef8a107eca6744ec063e4366d55374e07 Parents: 73146a0 Author: Lars Volker <[email protected]> Authored: Tue Dec 20 14:21:32 2016 -0800 Committer: Internal Jenkins <[email protected]> Committed: Wed Dec 21 04:08:38 2016 +0000 ---------------------------------------------------------------------- be/src/util/webserver.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/ba8c135e/be/src/util/webserver.cc ---------------------------------------------------------------------- diff --git a/be/src/util/webserver.cc b/be/src/util/webserver.cc index 7cdd026..d971852 100644 --- a/be/src/util/webserver.cc +++ b/be/src/util/webserver.cc @@ -80,8 +80,8 @@ DEFINE_string(webserver_certificate_file, "", "The location of the debug webserver's SSL certificate file, in .pem format. If " "empty, webserver SSL support is not enabled"); DEFINE_string(webserver_private_key_file, "", "The full path to the private key used as a" - " counterpart to the public key contained in --ssl_server_certificate. If " - "--ssl_server_certificate is set, this option must be set as well."); + " counterpart to the public key contained in --webserver_certificate_file. If " + "--webserver_certificate_file is set, this option must be set as well."); DEFINE_string(webserver_private_key_password_cmd, "", "A Unix command whose output " "returns the password used to decrypt the Webserver's certificate private key file " "specified in --webserver_private_key_file. If the .PEM key file is not "
