From ccd97275e5393a7aeadb060c3f807a56481ad35d Mon Sep 17 00:00:00 2001 From: Marcelo Vanzin Date: Thu, 10 Mar 2016 17:18:00 -0800 Subject: [PATCH] [minor][core] Fix a duplicate "and" in a log message. --- core/src/main/scala/org/apache/spark/SparkConf.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/org/apache/spark/SparkConf.scala b/core/src/main/scala/org/apache/spark/SparkConf.scala index f9c01f30f14f3..aaccf49eeba1c 100644 --- a/core/src/main/scala/org/apache/spark/SparkConf.scala +++ b/core/src/main/scala/org/apache/spark/SparkConf.scala @@ -718,7 +718,7 @@ private[spark] object SparkConf extends Logging { allAlternatives.get(key).foreach { case (newKey, cfg) => logWarning( s"The configuration key '$key' has been deprecated as of Spark ${cfg.version} and " + - s"and may be removed in the future. Please use the new key '$newKey' instead.") + s"may be removed in the future. Please use the new key '$newKey' instead.") return } if (key.startsWith("spark.akka") || key.startsWith("spark.ssl.akka")) {