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/19 22:55:01 UTC

[geode] 01/01: 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 GEODE-5547-RegionManagementDUnitTest
in repository https://gitbox.apache.org/repos/asf/geode.git

commit a9fe65dd390a9b74e304f32a825f11dbafd28aed
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;