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:00 UTC

[geode] branch GEODE-5547-RegionManagementDUnitTest created (now a9fe65d)

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

klund pushed a change to branch GEODE-5547-RegionManagementDUnitTest
in repository https://gitbox.apache.org/repos/asf/geode.git.


      at a9fe65d  GEODE-5547: Log info message when canceling ManagementListener

This branch includes the following new commits:

     new a9fe65d  GEODE-5547: Log info message when canceling ManagementListener

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[geode] 01/01: GEODE-5547: Log info message when canceling ManagementListener

Posted by kl...@apache.org.
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;