You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by co...@apache.org on 2016/09/13 07:41:37 UTC

zeppelin git commit: Revert "[ZEPPELIN-1365] Error of Zeppelin Application in development mode."

Repository: zeppelin
Updated Branches:
  refs/heads/master 802bf5041 -> 04fdfa199


Revert "[ZEPPELIN-1365] Error of Zeppelin Application in development mode."

This reverts commit db7c11d3b62a8066b0138fd9700731c953cec1a5.


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

Branch: refs/heads/master
Commit: 04fdfa199654d86ad967421db0ab91735177edfa
Parents: 802bf50
Author: Damien CORNEAU <co...@gmail.com>
Authored: Tue Sep 13 16:41:00 2016 +0900
Committer: Damien CORNEAU <co...@gmail.com>
Committed: Tue Sep 13 16:41:00 2016 +0900

----------------------------------------------------------------------
 .../zeppelin/interpreter/remote/RemoteInterpreterServer.java  | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/04fdfa19/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterServer.java
----------------------------------------------------------------------
diff --git a/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterServer.java b/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterServer.java
index 7ddb928..a0890a3 100644
--- a/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterServer.java
+++ b/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterServer.java
@@ -34,7 +34,6 @@ import org.apache.zeppelin.display.*;
 import org.apache.zeppelin.helium.*;
 import org.apache.zeppelin.interpreter.*;
 import org.apache.zeppelin.interpreter.InterpreterResult.Code;
-import org.apache.zeppelin.interpreter.dev.ZeppelinDevServer;
 import org.apache.zeppelin.interpreter.thrift.*;
 import org.apache.zeppelin.resource.*;
 import org.apache.zeppelin.scheduler.Job;
@@ -134,11 +133,7 @@ public class RemoteInterpreterServer
 
   public static void main(String[] args)
       throws TTransportException, InterruptedException {
-
-    int port = ZeppelinDevServer.DEFAULT_TEST_INTERPRETER_PORT;
-    if (args.length > 0) {
-      port = Integer.parseInt(args[0]);
-    }
+    int port = Integer.parseInt(args[0]);
     RemoteInterpreterServer remoteInterpreterServer = new RemoteInterpreterServer(port);
     remoteInterpreterServer.start();
     remoteInterpreterServer.join();