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 2021/05/03 07:51:00 UTC

[zeppelin] branch branch-0.9 updated (a455e7d -> 6f03f11)

This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a change to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/zeppelin.git.


    from a455e7d  [ZEPPELIN-5320]. Support yarn application mode for flink interpreter
     new c01dc39  [ZEPPELIN-5296]. NPE when calling completion for %spark.sql
     new 6f03f11  [HOTFIX] Fix pty4j downloading issue

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 shell/pom.xml                                                       | 6 +++---
 .../main/java/org/apache/zeppelin/spark/SparkSqlInterpreter.java    | 6 ------
 submarine/pom.xml                                                   | 6 +++---
 3 files changed, 6 insertions(+), 12 deletions(-)

[zeppelin] 01/02: [ZEPPELIN-5296]. NPE when calling completion for %spark.sql

Posted by zj...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/zeppelin.git

commit c01dc398a6892a2346fbff008b9f6d9ebb56997d
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Tue Mar 23 15:00:14 2021 +0800

    [ZEPPELIN-5296]. NPE when calling completion for %spark.sql
    
    ### What is this PR for?
    
    Trivial PR to fix NPE in Spark interpreter when calling code completion.
    
    ### What type of PR is it?
    [Bug Fix
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * https://issues.apache.org/jira/browse/ZEPPELIN-5296
    
    ### How should this be tested?
    * CI pass
    
    ### Screenshots (if appropriate)
    
    ### 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 #4084 from zjffdu/ZEPPELIN-5296 and squashes the following commits:
    
    89bbe4e9a [Jeff Zhang] [ZEPPELIN-5296]. NPE when calling completion for %spark.sql
---
 .../main/java/org/apache/zeppelin/spark/SparkSqlInterpreter.java    | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/spark/interpreter/src/main/java/org/apache/zeppelin/spark/SparkSqlInterpreter.java b/spark/interpreter/src/main/java/org/apache/zeppelin/spark/SparkSqlInterpreter.java
index cd82878..6c06399 100644
--- a/spark/interpreter/src/main/java/org/apache/zeppelin/spark/SparkSqlInterpreter.java
+++ b/spark/interpreter/src/main/java/org/apache/zeppelin/spark/SparkSqlInterpreter.java
@@ -188,10 +188,4 @@ public class SparkSqlInterpreter extends AbstractInterpreter {
       }
     }
   }
-
-  @Override
-  public List<InterpreterCompletion> completion(String buf, int cursor,
-      InterpreterContext interpreterContext) {
-    return null;
-  }
 }

[zeppelin] 02/02: [HOTFIX] Fix pty4j downloading issue

Posted by zj...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/zeppelin.git

commit 6f03f11ce9ef41d09e087c5c88e83a7f27f08e2d
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Mon May 3 10:54:16 2021 +0800

    [HOTFIX] Fix pty4j downloading issue
---
 shell/pom.xml     | 6 +++---
 submarine/pom.xml | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/shell/pom.xml b/shell/pom.xml
index 2ae66d6..032e58f 100644
--- a/shell/pom.xml
+++ b/shell/pom.xml
@@ -46,9 +46,9 @@
   <!-- pty4j library not in maven central repository (http://repo.maven.apache.org/maven2) -->
   <repositories>
     <repository>
-      <id>bintray-jetbrains-pty4j</id>
-      <name>bintray</name>
-      <url>https://jetbrains.bintray.com/pty4j</url>
+      <id>jetbrains-pty4j</id>
+      <name>JetBrains Pty4j Repository</name>
+      <url>https://dl.bintray.com/jetbrains/pty4j/</url>
     </repository>
   </repositories>
 
diff --git a/submarine/pom.xml b/submarine/pom.xml
index c223d5c..a8b4dde 100644
--- a/submarine/pom.xml
+++ b/submarine/pom.xml
@@ -45,9 +45,9 @@
 
   <repositories>
     <repository>
-      <id>bintray-jetbrains-pty4j</id>
-      <name>bintray</name>
-      <url>https://jetbrains.bintray.com/pty4j</url>
+      <id>jetbrains-pty4j</id>
+      <name>JetBrains Pty4j Repository</name>
+      <url>https://dl.bintray.com/jetbrains/pty4j/</url>
     </repository>
   </repositories>