JoshRosen commented on a change in pull request #34158:
URL: https://github.com/apache/spark/pull/34158#discussion_r721806159
##########
File path: core/src/main/scala/org/apache/spark/storage/DiskBlockManager.scala
##########
@@ -45,8 +45,8 @@ import org.apache.spark.util.{ShutdownHookManager, Utils}
*
* ShuffleDataIO also can change the behavior of deleteFilesOnStop.
*/
-private[spark] class DiskBlockManager(conf: SparkConf, var deleteFilesOnStop:
Boolean)
- extends Logging {
+private[spark] class DiskBlockManager(conf: SparkConf, var deleteFilesOnStop:
Boolean,
+ isDriver: Boolean) extends Logging {
Review comment:
Tiny style nit: wrapping long line to conform with [style
guide](https://github.com/databricks/scala-style-guide#spacing-and-indentation)
```suggestion
private[spark] class DiskBlockManager(
conf: SparkConf,
var deleteFilesOnStop: Boolean,
isDriver: Boolean)
extends Logging {
```
--
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]