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 <957029...@qq.com> AuthorDate: Tue Mar 31 16:24:11 2020 +0800 [minor] fix typo spelling mistake Author: Trevor-zhang <957029...@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); } }