Github user CodingCat commented on a diff in the pull request:

    https://github.com/apache/spark/pull/7927#discussion_r36179774
  
    --- Diff: 
core/src/test/scala/org/apache/spark/storage/BlockManagerSuite.scala ---
    @@ -443,6 +443,21 @@ class BlockManagerSuite extends SparkFunSuite with 
Matchers with BeforeAndAfterE
         assert(list2DiskGet.get.readMethod === DataReadMethod.Disk)
       }
     
    +  test("block manager crash test") {
    +    conf.set("spark.network.timeout", "5s")
    +    store = makeBlockManager(8000)
    +    store2 = makeBlockManager(8000)
    +    val list1 = List(new Array[Byte](4000))
    +    store2.putIterator("list1", list1.iterator, StorageLevel.MEMORY_ONLY, 
tellMaster = true)
    +    val list1get = store.getRemote("list1")
    --- End diff --
    
    camel case naming style...so it is list1Get, 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

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

Reply via email to