You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ji...@apache.org on 2018/04/16 23:06:57 UTC

[geode] branch develop updated: GEODE-5000: fix logging message. (#1763)

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

jinmeiliao 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 ad11ef0  GEODE-5000: fix logging message. (#1763)
ad11ef0 is described below

commit ad11ef0dd338eb0baf5f36a4d71899fe892ed0d0
Author: jinmeiliao <ji...@pivotal.io>
AuthorDate: Mon Apr 16 16:06:53 2018 -0700

    GEODE-5000: fix logging message. (#1763)
---
 .../org/apache/geode/internal/cache/ClusterConfigurationLoader.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/ClusterConfigurationLoader.java b/geode-core/src/main/java/org/apache/geode/internal/cache/ClusterConfigurationLoader.java
index 2ef9b2b..2288f21 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/ClusterConfigurationLoader.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/ClusterConfigurationLoader.java
@@ -83,11 +83,11 @@ public class ClusterConfigurationLoader {
    */
   public void deployJarsReceivedFromClusterConfiguration(ConfigurationResponse response)
       throws IOException, ClassNotFoundException {
-    logger.info("deploying jars received from cluster configuration");
     if (response == null) {
       return;
     }
 
+    logger.info("deploying jars received from cluster configuration");
     List<String> jarFileNames =
         response.getJarNames().values().stream().flatMap(Set::stream).collect(Collectors.toList());
 

-- 
To stop receiving notification emails like this one, please contact
jinmeiliao@apache.org.