You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by gj...@apache.org on 2019/07/29 20:05:15 UTC

[phoenix] branch master updated: PHOENIX-5408: Typo in ConnectionQueryServicesImpl Warning Logging

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4b1790d  PHOENIX-5408: Typo in ConnectionQueryServicesImpl Warning Logging
4b1790d is described below

commit 4b1790d12d35443080b9331e582c5ec7e1ac6e61
Author: William Shen <wi...@users.noreply.github.com>
AuthorDate: Tue Jul 23 14:32:55 2019 -0700

    PHOENIX-5408: Typo in ConnectionQueryServicesImpl Warning Logging
---
 .../main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java b/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
index b984317..fc761dd 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
@@ -440,7 +440,7 @@ public class ConnectionQueryServicesImpl extends DelegateQueryServices implement
             try {
                 this.queryDisruptor = new QueryLoggerDisruptor(this.config);
             } catch (SQLException e) {
-                LOGGER.warn("Unable to initiate qeuery logging service !!");
+                LOGGER.warn("Unable to initiate query logging service !!");
                 e.printStackTrace();
             }
         }