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/30 01:14:33 UTC

[phoenix] branch 4.x-HBase-1.5 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 4.x-HBase-1.5
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x-HBase-1.5 by this push:
     new 6a9f775  PHOENIX-5408: Typo in ConnectionQueryServicesImpl Warning Logging
6a9f775 is described below

commit 6a9f775be57bc4ee726794e0a27ba18512d7dd94
Author: William Shen <wi...@users.noreply.github.com>
AuthorDate: Mon Jul 29 17:58:08 2019 -0700

    PHOENIX-5408: Typo in ConnectionQueryServicesImpl Warning Logging
    
    Backport of #549
---
 .../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 c084e67..bd3f2a9 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
@@ -435,7 +435,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();
             }
         }