You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2018/11/26 20:23:13 UTC

[geode] branch develop updated: GEODE-5547: Log info message when canceling ManagementListener

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

klund 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 0c63ace  GEODE-5547: Log info message when canceling ManagementListener
0c63ace is described below

commit 0c63ace61ef3f57099af45a8c9f1c9389679e634
Author: Kirk Lund <kl...@apache.org>
AuthorDate: Mon Nov 19 14:51:22 2018 -0800

    GEODE-5547: Log info message when canceling ManagementListener
---
 .../org/apache/geode/distributed/internal/InternalDistributedSystem.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java b/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java
index 4fed864..32f3d13 100644
--- a/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java
+++ b/geode-core/src/main/java/org/apache/geode/distributed/internal/InternalDistributedSystem.java
@@ -2201,6 +2201,7 @@ public class InternalDistributedSystem extends DistributedSystem
         listener.handleEvent(event, resource);
       } catch (CancelException e) {
         // ignore
+        logger.info("Skipping notifyResourceEventListeners for {} due to cancellation", event);
       } catch (GemFireSecurityException | ManagementException ex) {
         if (event == ResourceEvent.CACHE_CREATE) {
           throw ex;