Skip to content

Commit 68bc29e

Browse files
committed
Fix line length
1 parent 1090b58 commit 68bc29e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/main/scala/org/apache/spark/scheduler/DAGScheduler.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ class DAGScheduler(
138138
taskScheduler.setDAGScheduler(this)
139139

140140
// Flag to control if reduce tasks are assigned preferred locations
141-
private val shuffleLocalityEnabled = sc.getConf.getBoolean("spark.shuffle.reduceLocality.enabled", true)
141+
private val shuffleLocalityEnabled =
142+
sc.getConf.getBoolean("spark.shuffle.reduceLocality.enabled", true)
142143
// Number of map, reduce tasks above which we do not assign preferred locations
143144
// based on map output sizes. We limit the size of jobs for which assign preferred locations
144145
// as sorting the locations by size becomes expensive.

0 commit comments

Comments
 (0)