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

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


    omit 8749293  GEODE-3637: Moved client queue initialization into the 
ServerConnection.java Added test to confirm asynchronous client queue creation
     add fd059e0  GEODE-3908: Fixed the javadoc issue with LuceneSerializer.java
     add 5ca7659  GEODE-3910: Simplify MemberVM - remove generic type (#981)
     add 4193787  GEODE-3539: add tests for GetCommand and PutCommand (#966)
     add e004309  GEODE-3896: Remove Experimental tag from LuceneSerializer 
(#970)
     add 9a30e8a  GEODE-3914: Allow gfsh test rules to use more than 4 VMs 
(#982)
     add 01877ec  GEODE-3909: Use varargs for Query.execute
     add a3e5c67  User Guide: Typo correction in Cluster Configuration example
     add 348ab5b  GEODE-3913 Allow the SerializableCallables of the same 
transaction can be run by different threads.
     add 36655bc  GEODE-3902: Wait for all async invoked commands to complete 
(#986)
     add f04227f  GEODE-3901: Shut gfsh down cleanly so as not to produce 
suspect messages in the log (#988)
     add 529f6c5  GEODE-3872: Consolidate GfshShellConnectionRule Assertions
     add 255f056  GEODE-3899: add expected exception for possible race 
condition (#990)
     add e630cd3  GEODE-3190: Fix a race by checking if region is destroyed 
(#984)
     add 95bc7b6  Removed SNAPSHOT from releaseType
     add 9e07673  Fixing gradle script to: - have the correct name for signing 
the distribution - disable uploading iof the geode-modules.
     add 59f2a73  GEODE-3859: Simplify API for reading output from a GfshScript
     add cef1d79  Merge branch 'release/1.3.0' into develop
     add e8196df  GEODE-3902: Correct region used by test (#993)
     add 147552e  Add instructions for pushing "latest" docker image
     add 3b70ee6  Updating Dockerfile - for release 1.3.0 - removing references 
to incubating
     add 6a31190  GEODE-3861: Mark ClientHealthMonistorSelectorJUnitTest as 
flaky.
     add 4e5833b  GEODE-1897: Add eviction option to create region (#969)
     add fd907a0  GEODE-3919: Changed test to wait for the appropriate queue 
size since conflation is async
     add 19e5f8c  GEODE-3539: Consolidate CliUtil and DataCommandUtils, 
DataCommandsUtil (#992)
     add be27e6d  Restored SNAPSHOT releaseType
     add 5055d01  GEODE-3872: Remove executeAndVerify method
     add d0a2c3d  GEODE-3338 Refactor WAN command tests to use new Rules
     new 2a78ebd  GEODE-3637: Moved client queue initialization into the 
ServerConnection.java Added test to confirm asynchronous client queue creation

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   (8749293)
            \
             N -- N -- N   refs/heads/feature/GEODE-3637 (2a78ebd)

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:
 docker/Dockerfile                                  |  14 +-
 docker/README.md                                   |   3 +-
 extensions/geode-modules-assembly/build.gradle     |   1 +
 geode-assembly/build.gradle                        |   2 +-
 .../session/tests/TomcatClientServerTest.java      |   4 +-
 .../TomcatSessionBackwardsCompatibilityTest.java   |   8 +-
 .../java/org/apache/geode/cache/query/Query.java   |   2 +-
 .../internal/ClusterConfigurationService.java      |  64 ++-
 .../geode/internal/cache/AbstractRegionMap.java    |  12 +-
 .../internal/beans/QueryDataFunction.java          |  36 +-
 .../geode/management/internal/cli/CliUtil.java     | 153 +++--
 .../internal/cli/commands/CreateRegionCommand.java |  57 +-
 .../internal/cli/commands/DataCommandUtil.java     |  44 --
 .../internal/cli/commands/DataCommandsUtils.java   | 229 --------
 .../cli/commands/DescribeConfigCommand.java        |   2 +-
 .../cli/commands/DescribeMemberCommand.java        |   3 +-
 .../cli/commands/ExecuteFunctionCommand.java       |   5 +-
 .../internal/cli/commands/ExportDataCommand.java   |   5 +-
 .../ExportImportClusterConfigurationCommands.java  |   4 +-
 .../internal/cli/commands/ExportLogsCommand.java   |   4 +-
 .../internal/cli/commands/GetCommand.java          |   3 +-
 .../internal/cli/commands/GfshCommand.java         |  11 +-
 .../internal/cli/commands/ImportDataCommand.java   |   5 +-
 .../internal/cli/commands/LocateEntryCommand.java  |   3 +-
 .../internal/cli/commands/NetstatCommand.java      |  27 +-
 .../internal/cli/commands/PutCommand.java          |   3 +-
 .../internal/cli/commands/QueryCommand.java        |   3 +-
 .../internal/cli/commands/RebalanceCommand.java    | 157 ++++-
 .../internal/cli/commands/RemoveCommand.java       |   3 +-
 .../internal/cli/domain/DataCommandResult.java     |   4 -
 .../cli/functions/RegionCreateFunction.java        |   6 +
 .../internal/cli/functions/RegionFunctionArgs.java |  78 +++
 .../management/internal/cli/i18n/CliStrings.java   |  27 +
 .../geode/redis/internal/RegionProvider.java       |   4 +-
 .../cache/ClientServerTransactionDUnitTest.java    |  90 +--
 ...troyEntryWithConcurrentOperationJUnitTest.java} |  74 ++-
 .../ExtensionClusterConfigurationDUnitTest.java    |  14 +-
 .../ClientHealthMonitorSelectorJUnitTest.java      |   3 +-
 ...ainWithChildrenRollingFileHandlerDUnitTest.java |  14 +-
 .../management/internal/cli/CliUtilDUnitTest.java  |   6 +-
 .../internal/cli/CliUtilTest.java}                 |  26 +-
 .../internal/cli/GfshParserAutoCompletionTest.java |   2 +-
 .../management/internal/cli/NetstatDUnitTest.java  |  12 +-
 .../AlterRegionCommandIntegrationTest.java         |  20 +-
 .../commands/ChangeLogLevelCommandDUnitTest.java   |   8 +-
 .../cli/commands/ConcurrentDeployDUnitTest.java    |   6 +-
 .../cli/commands/CreateRegionCommandDUnitTest.java |  63 +-
 .../CreateRegionCommandIntegrationTest.java        | 288 ++++++----
 .../cli/commands/CreateRegionCommandTest.java      |  30 +-
 ...DeployCommandFunctionRegistrationDUnitTest.java |   6 +-
 .../commands/DeployCommandRedeployDUnitTest.java   |  18 +-
 .../cli/commands/DeployWithGroupsDUnitTest.java    |  62 +-
 .../commands/DescribeConfigCommandJUnitTest.java   |  31 +-
 .../commands/DescribeMembersCommandDUnitTest.java  |  25 +-
 .../commands/DestroyRegionCommandDUnitTest.java    |  32 +-
 .../ExecuteFunctionCommandSecurityTest.java        |  48 +-
 .../cli/commands/ExportDataIntegrationTest.java    |   4 +-
 .../internal/cli/commands/ExportLogsDUnitTest.java |  14 +-
 .../commands/ExportLogsOnServerManagerDUnit.java   |  13 +-
 .../cli/commands/ExportLogsStatsDUnitTest.java     |  10 +-
 .../ExportLogsWithMemberGroupDUnitTest.java        |   6 +-
 .../cli/commands/FunctionCommandsDUnitTest.java    | 118 ++--
 .../internal/cli/commands/GcCommandDUnitTest.java  |   6 +-
 .../cli/commands/GemfireDataCommandsDUnitTest.java |   3 +-
 .../cli/commands/GetCommandIntegrationTest.java    | 158 ++++++
 ...ionWithCacheLoaderDuringCacheMissDUnitTest.java | 390 -------------
 .../cli/commands/GfshCommandIntegrationTest.java   |   6 +-
 .../cli/commands/ImportDataIntegrationTest.java    |  12 +-
 .../cli/commands/IndexCommandsIntegrationTest.java |  32 +-
 .../IndexCommandsShareConfigurationDUnitTest.java  |   6 +-
 .../commands/ListAndDescribeRegionDUnitTest.java   |  71 +--
 .../cli/commands/ListIndexCommandDUnitTest.java    |  20 +-
 .../cli/commands/ListMembersCommandDUnitTest.java  |  14 +-
 .../cli/commands/PutCommandIntegrationTest.java    |  34 +-
 .../internal/cli/commands/QueryCommandTest.java    | 105 ++--
 .../cli/commands/QueryCommandUnitTest.java         |  30 -
 .../cli/commands/RemoveCommandDUnitTest.java       |  28 +-
 .../cli/commands/RemoveCommandJsonDUnitTest.java   |  10 +-
 .../cli/commands/ShowDeadlockDUnitTest.java        |   4 +-
 .../cli/commands/ShowLogCommandDUnitTest.java      |   4 +-
 .../cli/commands/ShowMetricsDUnitTest.java         |  27 +-
 .../commands/ShowMissingDiskStoresDUnitTest.java   |   6 +-
 .../cli/commands/ShutdownCommandDUnitTest.java     |   6 +-
 .../internal/cli/commands/TestObjectSizer.java}    |  22 +-
 .../cli/functions/RegionFunctionArgsTest.java      |  37 ++
 .../cli/shell/GfshMultilineCommandTest.java        |   4 +-
 .../internal/configuration/ClusterConfig.java      |  29 +-
 .../ClusterConfigDeployJarDUnitTest.java           |  32 +-
 .../ClusterConfigDistributionDUnitTest.java        |  39 +-
 .../ClusterConfigImportDUnitTest.java              |  18 +-
 .../ClusterConfigWithSecurityDUnitTest.java        |   6 +-
 .../ImportClusterConfigDistributedTest.java        |  21 +-
 .../ImportOldClusterConfigDUnitTest.java           |   6 +-
 .../security/GfshCommandsPostProcessorTest.java    |  12 +-
 .../security/GfshCommandsSecurityTest.java         |   4 +-
 .../ClientDestroyInvalidateAuthDUnitTest.java      |   3 +-
 .../PDXGfshPostProcessorOnRemoteServerTest.java    |  30 +-
 .../geode/security/PDXPostProcessorDUnitTest.java  |   9 +-
 .../SecurityWithoutClusterConfigDUnitTest.java     |  18 +-
 .../security/StartServerAuthorizationTest.java     |  16 +-
 .../test/dunit/rules/LocatorServerStartupRule.java |  34 +-
 .../apache/geode/test/dunit/rules/MemberVM.java    |  15 +-
 .../assertions/GfshShellConnectionRuleAssert.java  | 232 ++++++++
 .../GfshShellConnectionRuleExecution.java          |  30 +-
 .../test/junit/rules/GfshShellConnectionRule.java  |  38 +-
 .../geode/codeAnalysis/sanctionedSerializables.txt |   3 +-
 .../persisting_configurations.html.md.erb          |   6 +-
 .../geode/cache/lucene/LuceneSerializer.java       |   7 +-
 .../lucene/LuceneCommandsSecurityDUnitTest.java    |   4 +-
 .../internal/cli/LuceneIndexCommandsDUnitTest.java | 153 ++---
 .../internal/cli/LuceneIndexCommandsJUnitTest.java |   8 +-
 .../LuceneClusterConfigurationDUnitTest.java       |  52 +-
 .../geode/internal/cache/wan/WANTestBase.java      |   8 +-
 .../cache/wan/misc/WanAutoDiscoveryDUnitTest.java  |  55 +-
 .../wan/parallel/ParallelWANStatsDUnitTest.java    |   4 +-
 ...teAndDestroyGatewaySenderCommandsDUnitTest.java | 354 +++++++-----
 .../CreateGatewayReceiverCommandDUnitTest.java     | 632 +++++++++++----------
 .../CreateGatewaySenderCommandDUnitTest.java       |  73 ++-
 .../DestroyGatewaySenderCommandDUnitTest.java      |  56 +-
 .../PauseGatewaySenderCommandDUnitTest.java        | 259 +++++----
 .../ResumeGatewaySenderCommandDUnitTest.java       | 342 ++++++-----
 .../StartGatewayReceiverCommandDUnitTest.java      | 245 +++++---
 .../StartGatewaySenderCommandDUnitTest.java        | 254 +++++----
 .../StatusGatewayReceiverCommandDUnitTest.java     | 185 ++++--
 .../StatusGatewaySenderCommandDUnitTest.java       | 263 ++++++---
 .../StopGatewayReceiverCommandDUnitTest.java       | 254 ++++++---
 .../StopGatewaySenderCommandDUnitTest.java         | 255 +++++----
 .../cache/wan/wancommand/WANCommandTestBase.java   | 559 ------------------
 .../cache/wan/wancommand/WANCommandUtils.java      | 344 +++++++++++
 .../wan/wancommand/WanCommandListDUnitTest.java    | 248 ++++----
 ...rConfigurationIndexWithFromClauseDUnitTest.java |   8 +-
 .../WANClusterConfigurationDUnitTest.java          |   4 +-
 .../cli/commands/AlterRuntimeCommandDUnitTest.java |  42 +-
 .../commands/ClusterConfigurationDUnitTest.java    |  19 +-
 .../cli/commands/CommandOverHttpDUnitTest.java     |   1 -
 .../internal/cli/commands/CommandOverHttpTest.java |  13 +-
 .../commands/ConnectCommandWithSecurityTest.java   |   6 +-
 .../commands/DescribeConfigCommandDUnitTest.java   |   9 +-
 ...xecuteFunctionCommandWithSecurityDUnitTest.java |   6 +-
 .../cli/commands/ExportConfigCommandDUnitTest.java |   9 +-
 .../FunctionCommandsOverHttpDUnitTest.java         |   3 +-
 .../internal/security/LogNoPasswordTest.java       |   2 +-
 142 files changed, 4473 insertions(+), 3928 deletions(-)
 delete mode 100644 
geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/DataCommandUtil.java
 rename 
geode-core/src/test/java/org/apache/geode/internal/cache/{Bug48182JUnitTest.java
 => DestroyEntryWithConcurrentOperationJUnitTest.java} (71%)
 copy 
geode-core/src/test/java/org/apache/geode/{internal/cache/ProxyBucketRegionTest.java
 => management/internal/cli/CliUtilTest.java} (65%)
 create mode 100644 
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/GetCommandIntegrationTest.java
 delete mode 100644 
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/GetCommandOnRegionWithCacheLoaderDuringCacheMissDUnitTest.java
 copy 
geode-web/src/test/java/org/apache/geode/management/internal/cli/commands/ConnectCommandIntegrationTest.java
 => 
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/PutCommandIntegrationTest.java
 (57%)
 delete mode 100644 
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/QueryCommandUnitTest.java
 copy geode-core/src/test/java/{com/company/app/Customer.java => 
org/apache/geode/management/internal/cli/commands/TestObjectSizer.java} (78%)
 create mode 100644 
geode-core/src/test/java/org/apache/geode/test/junit/assertions/GfshShellConnectionRuleAssert.java
 copy 
geode-web/src/test/java/org/apache/geode/management/internal/cli/commands/ExportLogsOverHttpIntegrationTest.java
 => 
geode-core/src/test/java/org/apache/geode/test/junit/assertions/GfshShellConnectionRuleExecution.java
 (58%)
 delete mode 100644 
geode-wan/src/test/java/org/apache/geode/internal/cache/wan/wancommand/WANCommandTestBase.java
 create mode 100644 
geode-wan/src/test/java/org/apache/geode/internal/cache/wan/wancommand/WANCommandUtils.java

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

Reply via email to