srowen commented on a change in pull request #23685: 
[SPARK-26771][CORE][GRAPHX] Make .unpersist(), .destroy() consistently 
non-blocking by default
URL: https://github.com/apache/spark/pull/23685#discussion_r251864078
 
 

 ##########
 File path: core/src/test/scala/org/apache/spark/DistributedSuite.scala
 ##########
 @@ -323,7 +323,7 @@ class DistributedSuite extends SparkFunSuite with Matchers 
with LocalSparkContex
     data.persist(StorageLevel.MEMORY_ONLY_2)
     data.count
     assert(sc.persistentRdds.isEmpty === false)
-    data.unpersist()
+    data.unpersist(blocking = true)
 
 Review comment:
   This is an example of tests where blocking behavior seems important, so they 
now explicit request it.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to