HyukjinKwon commented on a change in pull request #31515:
URL: https://github.com/apache/spark/pull/31515#discussion_r571747468
##########
File path: core/src/test/scala/org/apache/spark/SparkContextSuite.scala
##########
@@ -1155,11 +1155,12 @@ class SparkContextSuite extends SparkFunSuite with
LocalSparkContext with Eventu
val testKey = "hadoop.tmp.dir"
val bufferKey = "io.file.buffer.size"
val hadoopConf0 = new Configuration()
+ hadoopConf0.set(testKey, "/tmp/hive_zero")
val hiveConfFile =
Utils.getContextOrSparkClassLoader.getResource("hive-site.xml")
assert(hiveConfFile != null)
hadoopConf0.addResource(hiveConfFile)
- assert(hadoopConf0.get(testKey) === "/tmp/hive_one")
+ assert(hadoopConf0.get(testKey) === "/tmp/hive_zero")
Review comment:
@yaooqinn, can you open a PR for that, or push some changes into this
PR? I think the test is not flaky but broken. It doesn't look obvious because
we don't always run YarnClusterSuite.
----------------------------------------------------------------
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]