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

    https://github.com/apache/incubator-zeppelin/pull/38#discussion_r28484532
  
    --- Diff: 
spark/src/main/java/org/apache/zeppelin/spark/SparkInterpreter.java ---
    @@ -259,17 +259,20 @@ public SparkContext createSparkContext() {
     
         for (Object k : intpProperty.keySet()) {
           String key = (String) k;
    -      Object value = intpProperty.get(key);
    -      logger.debug(String.format("SparkConf: key = [%s], value = [%s]", 
key, value));
    -      conf.set(key, (String) value);
    +      String val = toString(intpProperty.get(key));
    +
    +      if (!val.startsWith("spark.") || !val.trim().isEmpty()) {
    --- End diff --
    
    @bzz Don't you mean !key.startsWith("spark.")?


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

Reply via email to