Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style fixes
  • Loading branch information
tgravescs committed Mar 12, 2014
commit 6b783bdb5e09b7c96cbb76111876fbb6c9ca9a6f
2 changes: 1 addition & 1 deletion core/src/main/scala/org/apache/spark/rdd/PipedRDD.scala
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class PipedRDD[T: ClassTag](
}

// cleanup task working directory if used
if(workInTaskDirectory == true) {
if (workInTaskDirectory == true) {
FileUtils.deleteQuietly(new File(taskDirectory))
logDebug("Removed task working directory " + taskDirectory)
}
Expand Down
1 change: 0 additions & 1 deletion core/src/test/scala/org/apache/spark/PipedRDDSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ class PipedRDDSuite extends FunSuite with SharedSparkContext {
val collectPwd = pipedPwd.collect()
println("collect pwd is: " + collectPwd(0))
assert(collectPwd(0).contains("tasks/"))
assert(collectPwd(0).matches("tasks/"))
} else {
assert(true)
}
Expand Down