cloud-fan commented on a change in pull request #30642:
URL: https://github.com/apache/spark/pull/30642#discussion_r543972001
##########
File path:
sql/core/src/main/scala/org/apache/spark/sql/internal/SharedState.scala
##########
@@ -67,11 +67,12 @@ private[sql] class SharedState(
case (k, _) if k == "hive.metastore.warehouse.dir" || k ==
WAREHOUSE_PATH.key =>
logWarning(s"Not allowing to set ${WAREHOUSE_PATH.key} or
hive.metastore.warehouse.dir " +
s"in SparkSession's options, it should be set statically for
cross-session usages")
- case (k, v) =>
- logDebug(s"Applying initial SparkSession options to
SparkConf/HadoopConf: $k -> $v")
+ case (k, v) if SQLConf.staticConfKeys.contains(k) =>
Review comment:
this seems a separated bug fix, can we open a separated PR to fix it?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]