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

    https://github.com/apache/spark/pull/7739#discussion_r36826580
  
    --- Diff: 
core/src/main/scala/org/apache/spark/deploy/rest/mesos/MesosRestServer.scala ---
    @@ -88,7 +88,10 @@ private[mesos] class MesosSubmitRequestServlet(
         // Optional fields
         val sparkProperties = request.sparkProperties
         val driverExtraJavaOptions = 
sparkProperties.get("spark.driver.extraJavaOptions")
    -    val driverExtraClassPath = 
sparkProperties.get("spark.driver.extraClassPath")
    +    val commonExtraClassPath = 
sparkProperties.get("spark.common.extraClassPath")
    +    val driverSpecificExtraClassPath = 
sparkProperties.get("spark.driver.extraClassPath")
    +    val driverExtraClassPath = Option(( commonExtraClassPath ++ 
driverSpecificExtraClassPath)
    --- End diff --
    
    Will fix.


---
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