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

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


    omit 8bf3899  GEODE-7683: introduce BR.cmnClearRegion
     add 93aa3c4  GEODE-7772: Simplify hasNext in 
PageableLuceneQueryResultsImpl (#4678)
     add bda6bdf  GEODE-7717: ClusterManagementListResult should show a list of 
EntityInfo (#4673)
     add af83072  GEODE-7760: NPE in Locator during auto-reconnect (#4668)
     add a2ac820  GEODE-5595: Fix DeltaPropagationDUnitTest flakiness (#4653)
     add 72e8346  GEODE-7777: add 1.13 management rest wiki page (#4681)
     add 01d78ca  GEODE-7650: Cleanup PutAllClientServerDistributedTest (#4680)
     add de3e9b5  GEODE-7356: Fix 
FixedPartitioningWithColocationAndPersistenceDUnitTest (#4674)
     add 7ab2713  GEODE-7776 - Proposed changes to remove build cycle (#4679)
     add 54d2341  GEODE-6070: Fix ShutdownCommandOverHttpDUnitTest
     new c640394  GEODE-7683: introduce BR.cmnClearRegion

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   (8bf3899)
            \
             N -- N -- N   refs/heads/feature/GEODE-7665 (c640394)

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


Summary of changes:
 .../rest/ListIndexManagementDUnitTest.java         |    2 +-
 geode-core/build.gradle                            |    4 -
 .../apache/geode/distributed/LocatorDUnitTest.java |   57 +-
 .../internal/cache/DeltaPropagationDUnitTest.java  | 2368 ++++++++-------
 ...oningWithColocationAndPersistenceDUnitTest.java | 3160 ++++++++++++++------
 .../AutoConnectionSourceImplJUnitTest.java         |    5 +
 .../client/internal/QueueManagerJUnitTest.java     |    5 +
 .../internal/InternalLocatorIntegrationTest.java   |   28 +-
 .../geode/cache/client/ClientRegionFactory.java    |    2 +-
 .../client/internal/ClientRegionFactoryImpl.java   |    3 +-
 .../geode/cache/client/internal/InternalPool.java  |    9 +-
 .../geode/cache/client/internal/PoolImpl.java      |    7 +-
 .../internal/InternalDistributedSystem.java        |    2 +-
 .../distributed/internal/InternalLocator.java      |   41 +-
 .../geode/internal/cache/GemFireCacheImpl.java     |   10 +-
 .../cache/InternalCacheForClientAccess.java        |    6 +-
 ...yStateFactory.java => InternalPoolFactory.java} |   21 +-
 .../internal/cache/PartitionedRegionDataStore.java |   20 +-
 .../geode/internal/cache/PoolFactoryImpl.java      |   13 +-
 .../cache/tier/sockets/CacheClientNotifier.java    |   21 +-
 .../cache/tier/sockets/CacheClientProxy.java       | 1023 +------
 .../tier/sockets/CacheClientProxyFactory.java      |   94 +
 .../cache/tier/sockets/ClientInterestList.java     |  265 ++
 .../cache/tier/sockets/MessageDispatcher.java      |  778 +++++
 .../geode/internal/cache/util/UncheckedUtils.java  |    6 +-
 .../internal/cache/xmlcache/CacheXmlGenerator.java |    5 +
 .../api/LocatorClusterManagementService.java       |   28 +-
 .../sanctioned-geode-core-serializables.txt        |    2 +-
 .../tier/sockets/CacheClientProxyFactoryTest.java  |  128 +
 .../internal/api/ClusterManagementResultTest.java  |    4 +-
 .../api/LocatorClusterManagementServiceTest.java   |   19 +-
 geode-core/src/test/resources/expected-pom.xml     |   12 -
 .../cache/PutAllClientServerDistributedTest.java   | 1355 ++++++---
 .../cli/commands/ShutdownCommandDUnitTestBase.java |   98 -
 .../cli/commands/ShutdownCommandDUnitTest.java     |  157 +-
 .../ClusterManagementGetResultAssert.java          |    6 +-
 .../ClusterManagementListResultAssert.java         |    2 +-
 .../internal/PageableLuceneQueryResultsImpl.java   |    6 +-
 .../api/ClusterManagementListResult.java           |   68 +-
 .../geode/management/api/EntityGroupInfo.java      |    7 +-
 .../apache/geode/management/api/EntityInfo.java    |   33 +-
 .../api/ClusterManagementListResultTest.java       |   90 +
 .../geode/management/api/EntityGroupInfoTest.java  |    2 +-
 .../geode/management/api/EntityInfoTest.java       |    8 +-
 .../src/test/script/update-management-wiki.sh      |    3 +-
 .../membership/gms/messenger/GMSQuorumChecker.java |    2 +
 .../client/MemberManagementServiceDUnitTest.java   |    3 +-
 .../rest/GatewayManagementIntegrationTest.java     |    4 +-
 .../internal/rest/HateoasIntegrationTest.java      |    4 +-
 ...MemberManagementServiceRestIntegrationTest.java |   64 +-
 .../controllers/MemberManagementController.java    |    4 +-
 .../controllers/RegionManagementController.java    |   10 +-
 .../commands/ShutdownCommandOverHttpDUnitTest.java |  153 +-
 53 files changed, 6405 insertions(+), 3822 deletions(-)
 copy 
geode-core/src/main/java/org/apache/geode/internal/cache/{TXEntryStateFactory.java
 => InternalPoolFactory.java} (64%)
 create mode 100644 
geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/CacheClientProxyFactory.java
 create mode 100644 
geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/ClientInterestList.java
 create mode 100644 
geode-core/src/main/java/org/apache/geode/internal/cache/tier/sockets/MessageDispatcher.java
 create mode 100644 
geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/CacheClientProxyFactoryTest.java
 delete mode 100644 
geode-dunit/src/main/java/org/apache/geode/management/internal/cli/commands/ShutdownCommandDUnitTestBase.java
 create mode 100644 
geode-management/src/test/java/org/apache/geode/management/api/ClusterManagementListResultTest.java

Reply via email to