LuciferYang commented on code in PR #39406:
URL: https://github.com/apache/spark/pull/39406#discussion_r1062234922
##########
sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/AsyncProgressTrackingMicroBatchExecutionSuite.scala:
##########
@@ -750,6 +750,12 @@ class AsyncProgressTrackingMicroBatchExecutionSuite
}
e.getCause.getCause.getMessage should include("Permission denied")
}
+ },
+ Execute { _ =>
+ // SPARK-41894: Restore the write permission of `commitDir`
+ // so that `mvn clean` can run successfully.
+ val commitDir = new File(checkpointLocation + path)
+ commitDir.setWritable(true)
Review Comment:
https://github.com/apache/spark/blob/58d5dc3d573dfbb6d21ea41d101550146756f45b/sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/AsyncProgressTrackingMicroBatchExecutionSuite.scala#L736-L743
Line 741 `commitDir.setReadOnly()`
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]