aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2016-10-21 22:20:52 -0700
committerReynold Xin <rxin@databricks.com>2016-10-21 22:20:52 -0700
commit7178c56433cd138dae53db9194c55e3f4fa0fa69 (patch)
treebdbf4b9ee77229a92d028f88aa2cc4520d597c80 /sql
parent3fbf5a58c236fc5d5fee39cb29e7f5c7e01c0ee7 (diff)
downloadspark-7178c56433cd138dae53db9194c55e3f4fa0fa69.tar.gz
spark-7178c56433cd138dae53db9194c55e3f4fa0fa69.tar.bz2
spark-7178c56433cd138dae53db9194c55e3f4fa0fa69.zip
[SPARK-16606][MINOR] Tiny follow-up to , to correct more instances of the same log message typo
## What changes were proposed in this pull request? Tiny follow-up to SPARK-16606 / https://github.com/apache/spark/pull/14533 , to correct more instances of the same log message typo ## How was this patch tested? Existing tests (no functional change anyway) Author: Sean Owen <sowen@cloudera.com> Closes #15586 from srowen/SPARK-16606.2.
Diffstat (limited to 'sql')
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala b/sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala
index baae550137..3045eb69f4 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala
@@ -814,7 +814,7 @@ object SparkSession {
if ((session ne null) && !session.sparkContext.isStopped) {
options.foreach { case (k, v) => session.sessionState.conf.setConfString(k, v) }
if (options.nonEmpty) {
- logWarning("Use an existing SparkSession, some configuration may not take effect.")
+ logWarning("Using an existing SparkSession; some configuration may not take effect.")
}
return session
}
@@ -826,7 +826,7 @@ object SparkSession {
if ((session ne null) && !session.sparkContext.isStopped) {
options.foreach { case (k, v) => session.sessionState.conf.setConfString(k, v) }
if (options.nonEmpty) {
- logWarning("Use an existing SparkSession, some configuration may not take effect.")
+ logWarning("Using an existing SparkSession; some configuration may not take effect.")
}
return session
}