Fix a display bug of Spark installation location
Project: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/commit/d64b7211 Tree: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/tree/d64b7211 Diff: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/diff/d64b7211 Branch: refs/heads/master Commit: d64b7211961b8d70bedc9b239ff86dffe32707be Parents: f8795ca Author: Donald Szeto <[email protected]> Authored: Mon Apr 3 10:49:38 2017 -0700 Committer: Donald Szeto <[email protected]> Committed: Mon Apr 3 10:49:38 2017 -0700 ---------------------------------------------------------------------- .../scala/org/apache/predictionio/tools/commands/Management.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-predictionio/blob/d64b7211/tools/src/main/scala/org/apache/predictionio/tools/commands/Management.scala ---------------------------------------------------------------------- diff --git a/tools/src/main/scala/org/apache/predictionio/tools/commands/Management.scala b/tools/src/main/scala/org/apache/predictionio/tools/commands/Management.scala index 84242ea..627b7e7 100644 --- a/tools/src/main/scala/org/apache/predictionio/tools/commands/Management.scala +++ b/tools/src/main/scala/org/apache/predictionio/tools/commands/Management.scala @@ -108,7 +108,7 @@ object Management extends EitherLogging { info("Inspecting Apache Spark...") val sparkHomePath = Common.getSparkHome(sparkHome) if (new File(s"$sparkHomePath/bin/spark-submit").exists) { - info(s"Apache Spark is installed at $sparkHome") + info(s"Apache Spark is installed at $sparkHomePath") val sparkMinVersion = "1.3.0" pioStatus = pioStatus.copy( sparkHome = sparkHomePath,
