From 5dade766716105d1e9b0d3dbd66986263977224c Mon Sep 17 00:00:00 2001 From: zuotingbing Date: Fri, 6 Jan 2017 16:13:45 +0800 Subject: [PATCH] [SPARK-19083]sbin/start-history-server.sh script use of $@ without quotes, this will affect the length of args which used in HistoryServerArguments::parse(args: List[String]) --- sbin/start-history-server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/start-history-server.sh b/sbin/start-history-server.sh index 6851d99b7e8f..38a43b98c399 100755 --- a/sbin/start-history-server.sh +++ b/sbin/start-history-server.sh @@ -31,4 +31,4 @@ fi . "${SPARK_HOME}/sbin/spark-config.sh" . "${SPARK_HOME}/bin/load-spark-env.sh" -exec "${SPARK_HOME}/sbin"/spark-daemon.sh start org.apache.spark.deploy.history.HistoryServer 1 $@ +exec "${SPARK_HOME}/sbin"/spark-daemon.sh start org.apache.spark.deploy.history.HistoryServer 1 "$@"