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

    https://github.com/apache/spark/pull/322#discussion_r11318644
  
    --- Diff: 
core/src/main/scala/org/apache/spark/executor/MesosExecutorBackend.scala ---
    @@ -50,13 +50,18 @@ private[spark] class MesosExecutorBackend
           executorInfo: ExecutorInfo,
           frameworkInfo: FrameworkInfo,
           slaveInfo: SlaveInfo) {
    -    logInfo("Registered with Mesos as executor ID " + 
executorInfo.getExecutorId.getValue)
    -    this.driver = driver
    -    val properties = Utils.deserialize[Array[(String, 
String)]](executorInfo.getData.toByteArray)
    -    executor = new Executor(
    -      executorInfo.getExecutorId.getValue,
    -      slaveInfo.getHostname,
    -      properties)
    +    val cl = Thread.currentThread.getContextClassLoader
    +    try {
    --- End diff --
    
    You need one more line here
    
    ```scala
    Thread.currentThread.setContextClassLoader(getClass.getClassLoader)
    ```


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to