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

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


    omit 56b5bf7  GEODE-925: Replaced all Wait.pause with Awaitility. Replaced 
all ThreadUtils.join with an Awaitility. General code and lambda clean up 
Modify test to use test rules remove TODO from test
     add 90665b2  GEODE-3523 AutoConnectionSourceDUnitTest: 
testDynamicallyFindLocators failed
     add 7972a9e  GEODE-4858: use FastPathScanner to register all the bind 
classes when c… (#1838)
     add b490673  GEODE-4890: use awaitility to reduce flakiness. (#1841)
     add 29010e5  GEODE-5100: prevent NPE when listing the gateway senders. 
(#1845)
     add a53b935  GEODE-4624: add a stats to trace total event removed by PQRM 
(#1850)
     add 65a2c0d  GEODE-5040: Fix intermittent RegionExpirationDistributedTest 
failure
     add eb0bb89  GEODE-5020: calculateThreadIdExpiryTime during 
ThreadIdentifierCustomExpiry ctor
     add 2dcc082  GEODE-5070: Use a random member for describe & list jdbc 
connector commands (#1849)
     add 4a385b8  GEODE-5103: When applying transactional update on a 
replicate, callba… (#1825)
     add 147c9d5  GEODE-3438: Removed unused constructor and method (#1832)
     add f6dd58f  GEODE-4996: Addressed NPE by always using the region entry key
     add 2fa94a0  GEODE-5129 Amend DistributedTestRule to honor the vmCount 
parameter when < 4 hosts
     add af3e575  GEODE-5122: Removed the type argument (#1840)
     add d5045a9  GEODE-5129 Amend DistributedTestRule to honor the vmCount 
parameter when < 4 hosts
     new 59a0d45  GEODE-925: Replaced all Wait.pause with Awaitility. Replaced 
all ThreadUtils.join with an Awaitility. General code and lambda clean up 
Modify test to use test rules remove TODO from test

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   (56b5bf7)
            \
             N -- N -- N   refs/heads/feature/GEODE-925 (59a0d45)

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:
 .../controllers/RestAPIsAndInterOpsDUnitTest.java  |  10 +-
 .../web/controllers/RestAPIsWithSSLDUnitTest.java  |  29 +-
 .../internal/cli/DescribeConnectionCommand.java    |  76 ++-
 .../jdbc/internal/cli/DescribeMappingCommand.java  |  60 +--
 .../jdbc/internal/cli/ListConnectionCommand.java   |  55 +-
 .../jdbc/internal/cli/ListMappingCommand.java      |  54 +-
 .../internal/configuration/ConnectorService.java   |   6 +-
 .../cli/DescribeConnectionCommandDUnitTest.java    |  70 ++-
 .../cli/DescribeConnectionCommandTest.java         |  59 ++-
 .../cli/DescribeMappingCommandDUnitTest.java       |  68 ++-
 .../internal/cli/DescribeMappingCommandTest.java   |  54 +-
 .../cli/ListConnectionCommandDUnitTest.java        |  79 ++-
 .../internal/cli/ListConnectionCommandTest.java    |  48 +-
 .../internal/cli/ListMappingCommandDUnitTest.java  |  84 ++-
 .../jdbc/internal/cli/ListMappingCommandTest.java  |  50 +-
 .../configuration/ConnectorServiceTest.java        |   4 +-
 .../asyncqueue/internal/AsyncEventQueueStats.java  |   8 +-
 .../geode/cache/configuration/CacheConfig.java     |   4 +-
 .../{package-info.java => XSDRootElement.java}     |  19 +-
 .../distributed/ClusterConfigurationService.java   |  20 -
 .../InternalClusterConfigurationService.java       |  27 +-
 .../internal/cache/AbstractBucketRegionQueue.java  |   4 +
 .../geode/internal/cache/AbstractRegionMap.java    | 278 +++++-----
 .../geode/internal/cache/BucketRegionQueue.java    |   2 +-
 .../org/apache/geode/internal/cache/HARegion.java  |   4 +
 .../geode/internal/cache/ha/HARegionQueue.java     |  91 +++-
 .../internal/cache/wan/AbstractGatewaySender.java  |   5 +-
 .../wan/AbstractGatewaySenderEventProcessor.java   |   2 +-
 .../internal/cache/wan/GatewaySenderStats.java     |  79 ++-
 .../wan/parallel/ParallelQueueRemovalMessage.java  |  10 +
 .../apache/geode/internal/config/JAXBService.java  |  93 +---
 .../internal/cli/commands/ListGatewayCommand.java  |   8 +-
 .../internal/cli/domain/DurableCqNamesResult.java  |  11 -
 .../internal/cli/util/ClasspathScanLoadHelper.java |   9 +
 .../cache/RegionExpirationDistributedTest.java     |  42 +-
 .../SerialAsyncEventQueueImplJUnitTest.java        |   7 +-
 .../internal/AutoConnectionSourceDUnitTest.java    | 585 +++++++++------------
 .../internal/LocatorLoadBalancingDUnitTest.java    |  81 ++-
 .../cache/client/internal/LocatorTestBase.java     | 140 ++---
 .../internal/CacheConfigIntegrationTest.java       |   2 +-
 .../InternalClusterConfigurationServiceTest.java   |  12 +-
 .../internal/cache/AbstractRegionMapTest.java      |  96 ++++
 .../ClientTxCommitShouldNotHangRegressionTest.java |   8 +-
 ...FireAndForgetFunctionOnAllServersDUnitTest.java |   8 +-
 .../geode/internal/cache/ha/HARegionDUnitTest.java |  13 +-
 .../internal/cache/ha/HARegionQueueDUnitTest.java  |  13 +-
 .../cache/ha/HARegionQueueIntegrationTest.java     | 286 ++++++++++
 .../cache/tier/sockets/HABug36738DUnitTest.java    |  13 +-
 .../cache/wan/AsyncEventQueueTestBase.java         |   6 +-
 .../ParallelQueueRemovalMessageJUnitTest.java      |  10 +-
 .../geode/internal/config/JAXBServiceTest.java     |  18 +-
 .../bean/stats/AsyncEventQueueStatsJUnitTest.java  |   5 +
 .../cli/commands/ListGatewayCommandTest.java       |  13 +
 ...onUsingLegacySecurityWithFailoverDUnitTest.java |  37 +-
 .../test/dunit/rules/DistributedTestRule.java      |   3 +-
 .../geode/test/dunit/standalone/DUnitLauncher.java |  10 +-
 .../distributed/LuceneQueryFunctionJUnitTest.java  |  16 +-
 ...tewayReceiverAutoConnectionSourceDUnitTest.java |   7 +-
 .../geode/internal/cache/wan/WANTestBase.java      |  13 +-
 .../parallel/ParallelWANConflationDUnitTest.java   |  51 +-
 60 files changed, 1669 insertions(+), 1306 deletions(-)
 copy 
geode-core/src/main/java/org/apache/geode/cache/configuration/{package-info.java
 => XSDRootElement.java} (71%)
 create mode 100644 
geode-core/src/test/java/org/apache/geode/internal/cache/ha/HARegionQueueIntegrationTest.java

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to