From a2d0f8211c13b21cb492d358ca8e42fe64366e53 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Thu, 18 Dec 2014 22:58:29 +0000 Subject: [PATCH] code review feedback --- .../org/apache/spark/deploy/history/HistoryServer.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/scala/org/apache/spark/deploy/history/HistoryServer.scala b/core/src/main/scala/org/apache/spark/deploy/history/HistoryServer.scala index f604762972b02..3664694a4c4a7 100644 --- a/core/src/main/scala/org/apache/spark/deploy/history/HistoryServer.scala +++ b/core/src/main/scala/org/apache/spark/deploy/history/HistoryServer.scala @@ -159,13 +159,13 @@ class HistoryServer( /** * The recommended way of starting and stopping a HistoryServer is through the scripts * start-history-server.sh and stop-history-server.sh. The path to a base log directory, - * as well as any other relevant history-server configuration, should be specified via + * as well as any other relevant history server configuration, should be specified via * the $SPARK_HISTORY_OPTS environment variable. For example: * - * export SPARK_HiSTORY_OPTS="-Dspark.history.fs.logDirectory=/tmp/spark-events" + * export SPARK_HISTORY_OPTS="-Dspark.history.fs.logDirectory=/tmp/spark-events" * ./sbin/start-history-server.sh * - * export SPARK_HiSTORY_OPTS="-Dspark.history.fs.logDirectory=hdfs://1.2.3.4:9000/spark-events" + * export SPARK_HISTORY_OPTS="-Dspark.history.fs.logDirectory=hdfs://1.2.3.4:9000/spark-events" * ./sbin/start-history-server.sh * * This launches the HistoryServer as a Spark daemon.