You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2017/07/24 11:56:36 UTC

zeppelin git commit: [HOTFIX] Followup of ZEPPELIN-1263

Repository: zeppelin
Updated Branches:
  refs/heads/master c5109ba8a -> f2c2941cf


[HOTFIX] Followup of ZEPPELIN-1263

### What is this PR for?
It is a hotfix of ZEPPELIN-1263, will merge it when CI pass

### What type of PR is it?
[ Hot Fix]

### Todos
* [ ] - Task

### What is the Jira issue?
* https://issues.apache.org/jira/browse/ZEPPELIN-1263

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Jeff Zhang <zj...@apache.org>

Closes #2501 from zjffdu/HOTFIX_1236 and squashes the following commits:

b589c6b [Jeff Zhang] [HOTFIX] Followup of ZEPPELIN-1236


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/f2c2941c
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/f2c2941c
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/f2c2941c

Branch: refs/heads/master
Commit: f2c2941cf1dd2311a0a0b87bf5573a5d66b56d67
Parents: c5109ba
Author: Jeff Zhang <zj...@apache.org>
Authored: Mon Jul 24 16:26:50 2017 +0800
Committer: Jeff Zhang <zj...@apache.org>
Committed: Mon Jul 24 19:55:20 2017 +0800

----------------------------------------------------------------------
 .../apache/zeppelin/interpreter/remote/RemoteInterpreter.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/f2c2941c/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java
----------------------------------------------------------------------
diff --git a/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java b/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java
index 847153e..12e0caa 100644
--- a/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java
+++ b/zeppelin-zengine/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreter.java
@@ -151,8 +151,8 @@ public class RemoteInterpreter extends Interpreter {
         sparkConfBuilder.append(" --master " + property.getProperty("master"));
       }
       if (isSparkConf(key, property.getProperty(key))) {
-        sparkConfBuilder.append(" --conf " + key + "=\"" +
-            toShellFormat(property.getProperty(key)) + "\"");
+        sparkConfBuilder.append(" --conf " + key + "=" +
+            toShellFormat(property.getProperty(key)));
       }
     }
     env.put("ZEPPELIN_SPARK_CONF", sparkConfBuilder.toString());