You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by nn...@apache.org on 2019/07/03 18:54:03 UTC

[geode] branch develop updated: GEODE-4958: Reducing log level to warn

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

nnag pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new c460391  GEODE-4958: Reducing log level to warn
c460391 is described below

commit c46039198f30c411c05c9dcc28615005b87cbf63
Author: Naburun Nag <na...@cs.wisc.edu>
AuthorDate: Wed Jul 3 11:46:21 2019 -0700

    GEODE-4958: Reducing log level to warn
    
    	* This code change from a previous commit was lost due to a merge from GEODE-6626.
    	* This commit is to bring back that change.
---
 .../apache/geode/internal/cache/tier/sockets/ServerConnection.java   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/ServerConnection.java b/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/ServerConnection.java
index d433b81..11e9adc 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/ServerConnection.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/ServerConnection.java
@@ -838,8 +838,9 @@ public abstract class ServerConnection implements Runnable {
           } else if (uniqueId == 0) {
             logger.debug("No unique ID yet. {}, {}", messageType, getName());
           } else {
-            logger.error("Failed to bind the subject of uniqueId {} for message {} with {}",
-                uniqueId, messageType, getName());
+            logger.warn(
+                "Failed to bind the subject of uniqueId {} for message {} with {} : Possible re-authentication required",
+                uniqueId, messageType, this.getName());
             throw new AuthenticationRequiredException("Failed to find the authenticated user.");
           }
         }