mridulm commented on code in PR #3487:
URL: https://github.com/apache/celeborn/pull/3487#discussion_r2366373980
##########
tests/spark-it/src/test/scala/org/apache/celeborn/tests/spark/memory/MemorySkewJoinSuite.scala:
##########
@@ -100,8 +101,8 @@ class MemorySkewJoinSuite extends AnyFunSuite
})
.toDF("key", "fa", "fb", "fc", "fd")
df2.createOrReplaceTempView("view2")
- new File("./df1").delete()
- new File("./df2").delete()
+ JavaUtils.deleteRecursively(new File("./df1"))
+ JavaUtils.deleteRecursively(new File("./df2"))
Review Comment:
This is unrelated to the PR - but was failing on my local box, and so I
addressed 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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]