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 2020/04/01 02:55:01 UTC

[zeppelin] branch master updated: [minor] fix typo

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

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


The following commit(s) were added to refs/heads/master by this push:
     new f7f1b92  [minor]  fix typo
f7f1b92 is described below

commit f7f1b9277c602b6cb5a31ceeac36eaec3048f3de
Author: Trevor-zhang <95...@qq.com>
AuthorDate: Tue Mar 31 16:24:11 2020 +0800

    [minor]  fix typo
    
    spelling mistake
    
    Author: Trevor-zhang <95...@qq.com>
    
    Closes #3708 from Trevor-zhang/master and squashes the following commits:
    
    91b209249 [Trevor-zhang] spelling mistake
---
 .../src/main/java/org/apache/zeppelin/search/LuceneSearch.java          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zeppelin-zengine/src/main/java/org/apache/zeppelin/search/LuceneSearch.java b/zeppelin-zengine/src/main/java/org/apache/zeppelin/search/LuceneSearch.java
index 3b59885..58f203e 100644
--- a/zeppelin-zengine/src/main/java/org/apache/zeppelin/search/LuceneSearch.java
+++ b/zeppelin-zengine/src/main/java/org/apache/zeppelin/search/LuceneSearch.java
@@ -245,7 +245,7 @@ public class LuceneSearch extends SearchService {
       indexWriter.updateDocument(new Term(ID_FIELD, id), doc);
       indexWriter.commit();
     } catch (IOException e) {
-      logger.error("Failed to updaet index of notebook {}", noteId, e);
+      logger.error("Failed to update index of notebook {}", noteId, e);
     }
   }