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/02/27 18:40:56 UTC

[geode] branch feature/GEODE-6451 updated (60301ad -> 4cfb536)

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

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


    from 60301ad  change Cache.close() to stop reconnect efforts
     new 7921c70  GEODE-6421 CI failure: org.apache.geode.distributed.LocatorDUnitTest.testStartTwoLocators failed with AssertionError
     new 126d688  GEODE-6379: track departed members to avoid processing in-flight lock request (#3176)
     new 5c641ad  GEODE-6449: Roll back docker-java rather than using custom jar. (#3241)
     new aca15c5  fixes for hung dunit runs The unicast receiver thread was becoming blocked if a forced disconnect occurred during reconnect because InternalDistributedSystem.disconnect sychronizes, for some reason, on GemFireCacheImpl.class.  This reworks that logic to have the reconnect thread get a SystemConnectException forcing cleanup of the reconnecting InternalDistributedSystem in that thread.
     new 4cfb536  fixing require-roles test failures

The 7433 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:
 build.gradle                                       |  3 +-
 buildSrc/build.gradle                              |  3 +-
 .../apache/geode/distributed/LocatorDUnitTest.java |  3 +-
 .../ClusterConfigLocatorRestartDUnitTest.java      |  2 +
 .../internal/InternalDistributedSystem.java        |  2 -
 .../distributed/internal/locks/DLockGrantor.java   | 50 +++++++++++-
 .../geode/internal/cache/GemFireCacheImpl.java     |  7 +-
 .../internal/locks/DLockGrantorTest.java           | 94 ++++++++++++++++++++++
 8 files changed, 155 insertions(+), 9 deletions(-)
 create mode 100644 geode-core/src/test/java/org/apache/geode/distributed/internal/locks/DLockGrantorTest.java