You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bs...@apache.org on 2019/01/18 19:48:30 UTC

[geode] branch feature/GEODE-6292 updated (c522e13 -> 468057c)

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

bschuchardt pushed a change to branch feature/GEODE-6292
in repository https://gitbox.apache.org/repos/asf/geode.git.


 discard c522e13  added another verification check in unit test
 discard 512b0f3  set thread's interrupt bit and do a cancellation check
 discard 85b30b9  spotless
 discard fc574df  GEODE-6292 hot loop in GMSJoinLeave.findCoordinator
     new 73fea3c  GEODE-6285: Make MBean names immutable in loner
     new efcfa93  Revert "GEODE-6244 Healthy member kicked out by sick member"
     new a757ccb  GEODE-6289: check for null className on createPdxInstanceFactory (#3090)
     new 3cf75b6  GEODE-6212: Add unit test coverage for ValueComparisonHelper (#3082)
     new ffd6b38  GEODE-6244 Healthy member kicked out by sick member
     new bec51c7  GEODE-6292 hot loop in GMSJoinLeave.findCoordinator
     new 276c890  spotless
     new 106755a  set thread's interrupt bit and do a cancellation check
     new 21f6fe6  added another verification check in unit test
     new 468057c  clear interrupt bit in test to avoid polluting others

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c522e13)
            \
             N -- N -- N   refs/heads/feature/GEODE-6292 (468057c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 7263 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.


Summary of changes:
 .../connectors/jdbc/JdbcLoaderIntegrationTest.java |   3 +-
 .../geode/cache30/ClientMembershipDUnitTest.java   |   5 +
 ...stemMXBeanWithNotificationsDistributedTest.java |   4 +-
 .../management/RegionManagementDUnitTest.java      |   3 +-
 ...niversalMembershipListenerAdapterDUnitTest.java |   5 +
 .../gms/membership/GMSJoinLeaveJUnitTest.java      |   2 +
 .../geode/pdx/PdxInstanceFactoryJUnitTest.java     |   7 +
 .../java/org/apache/geode/cache/RegionService.java |   1 +
 .../geode/distributed/DistributedMember.java       |   8 +-
 .../membership/InternalDistributedMember.java      |  18 +
 .../distributed/internal/membership/NetMember.java |   5 +
 .../distributed/internal/membership/NetView.java   |   9 -
 .../internal/membership/gms/GMSMember.java         |  17 +-
 .../membership/gms/membership/GMSJoinLeave.java    |   1 -
 .../internal/cache/ValueComparisonHelper.java      |   4 +-
 .../geode/management/internal/MBeanJMXAdapter.java |  32 +-
 .../geode/management/internal/NotificationHub.java |   3 +-
 .../internal/beans/DistributedSystemBridge.java    |  18 +-
 .../internal/beans/ManagementAdapter.java          |   2 +-
 .../geode/management/internal/cli/CliUtil.java     |   2 +-
 .../internal/cli/commands/RebalanceCommand.java    |   4 +-
 .../internal/cli/commands/ShowMetricsCommand.java  |   8 +-
 .../geode/pdx/internal/PdxInstanceFactoryImpl.java |   4 +
 .../internal/cache/ValueComparisonHelperTest.java  | 605 +++++++++++++++++++++
 .../management/internal/MBeanJMXAdapterTest.java   |  27 +
 25 files changed, 749 insertions(+), 48 deletions(-)
 create mode 100644 geode-core/src/test/java/org/apache/geode/internal/cache/ValueComparisonHelperTest.java