This is an automated email from the ASF dual-hosted git repository.
klund pushed a change to branch feature/GEODE-3940
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard d758255 GEODE-3940: fix deadlock in backup messages
omit 81377bb GEODE-3801: Use hardlinks for backup oplog files (#963)
add 01dc11f GEODE-3953: Incorrect use of .equals() for comparison of
fieldname arrays GEODE-3954: Misleading Exception message with mismatched
fieldAnalyzers
add f53bdf0 GEODE-3637: Revert changes to client queue initialization
add 26e393d GEODE_3959: Use temporary folder rule for
TomcatSessionBackwardsCompatibilityTest (#1023)
add d1fc134 GEODE-3539: LocatorServerStartupRule enhancement (#1021)
add 2a7fcd2 GEODE-3930: Create lucene index on an existing region
add c98335d User Guide: Clarify gfsh create region options
‘recovery-delay’ and ‘startup-recovery-delay’
add 00e1cb1 GEODE-2566: Add --if-exists option to destroy index (#1014)
add a5ea077 GEODE-2566 Missed merge issues (#1031)
new 080730b GEODE-3801: Use hardlinks for backup oplog files (#963)
new 81ff81d GEODE-3940: fix deadlock in backup messages
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 (d758255)
\
N -- N -- N refs/heads/feature/GEODE-3940 (81ff81d)
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 2 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:
.../TomcatSessionBackwardsCompatibilityTest.java | 21 +-
.../geode/internal/cache/AbstractRegion.java | 8 +-
.../geode/internal/cache/InternalRegion.java | 3 +
.../apache/geode/internal/cache/LocalRegion.java | 16 +-
.../geode/internal/cache/PartitionedRegion.java | 12 +-
.../internal/cache/tier/sockets/AcceptorImpl.java | 312 +++++++++------------
.../cache/tier/sockets/ServerConnection.java | 51 ++--
.../internal/cli/commands/DestroyIndexCommand.java | 84 ++----
.../management/internal/cli/domain/IndexInfo.java | 9 +
.../cli/functions/DestroyIndexFunction.java | 48 ++--
.../internal/cache/AbstractRegionJUnitTest.java | 5 +
.../ExtensionClusterConfigurationDUnitTest.java | 6 +-
.../sockets/AcceptorImplClientQueueDUnitTest.java | 263 -----------------
.../cli/commands/CreateRegionCommandDUnitTest.java | 13 +-
.../commands/DestroyIndexCommandsDUnitTest.java | 198 +++++++++++++
.../commands/DestroyRegionCommandDUnitTest.java | 16 +-
.../ExecuteFunctionCommandSecurityTest.java | 2 +-
.../cli/commands/FunctionCommandsDUnitTest.java | 10 +-
.../cli/commands/IndexCommandsIntegrationTest.java | 45 ++-
.../IndexCommandsShareConfigurationDUnitTest.java | 4 +-
.../cli/commands/ListIndexCommandDUnitTest.java | 4 +-
.../cli/commands/ShowDeadlockDUnitTest.java | 2 +-
.../cli/commands/ShowMetricsDUnitTest.java | 4 +-
.../internal/configuration/ClusterConfig.java | 2 +-
.../ClusterConfigDistributionDUnitTest.java | 2 +-
.../ClusterConfigImportDUnitTest.java | 2 +-
.../ClusterConfigWithSecurityDUnitTest.java | 6 +-
.../ImportOldClusterConfigDUnitTest.java | 2 +-
.../PDXGfshPostProcessorOnRemoteServerTest.java | 5 +-
.../geode/security/PeerAuthenticatorDUnitTest.java | 2 +-
.../PeerSecurityWithEmbeddedLocatorDUnitTest.java | 4 +-
.../apache/geode/test/dunit/rules/CacheRule.java | 22 +-
.../test/dunit/rules/LocatorServerStartupRule.java | 39 ++-
.../apache/geode/test/dunit/rules/MemberVM.java | 10 +
.../org/apache/geode/test/junit/rules/Locator.java | 2 +
.../geode/test/junit/rules/LocatorStarterRule.java | 7 +-
.../org/apache/geode/test/junit/rules/Member.java | 1 -
.../geode/test/junit/rules/MemberStarterRule.java | 26 ++
.../org/apache/geode/test/junit/rules/Server.java | 5 +-
.../geode/test/junit/rules/ServerStarterRule.java | 1 -
.../geode/codeAnalysis/sanctionedSerializables.txt | 5 +-
.../gfsh/command-pages/create.html.md.erb | 4 +-
.../internal/LuceneIndexCreationProfile.java | 9 +-
.../lucene/internal/LuceneIndexFactoryImpl.java | 19 +-
.../cache/lucene/internal/LuceneIndexImpl.java | 2 +
.../lucene/internal/LuceneRegionListener.java | 23 +-
.../cache/lucene/internal/LuceneServiceImpl.java | 71 ++++-
.../lucene/internal/xml/LuceneIndexCreation.java | 9 +-
.../cache/lucene/LuceneIndexCreationDUnitTest.java | 109 ++++++-
.../lucene/LuceneIndexCreationIntegrationTest.java | 39 +++
.../LuceneIndexCreationProfileJUnitTest.java | 7 +
.../internal/LuceneIndexFactoryImplJUnitTest.java | 4 +-
.../internal/LuceneServiceImplJUnitTest.java | 5 +-
.../internal/cli/LuceneIndexCommandsDUnitTest.java | 9 +-
.../LuceneClusterConfigurationDUnitTest.java | 11 +-
.../cache/wan/wancommand/WANCommandUtils.java | 30 +-
.../WANClusterConfigurationDUnitTest.java | 4 +-
.../cli/commands/AlterRuntimeCommandDUnitTest.java | 52 ++--
.../commands/DescribeConfigCommandDUnitTest.java | 2 +-
59 files changed, 911 insertions(+), 777 deletions(-)
delete mode 100644
geode-core/src/test/java/org/apache/geode/internal/cache/tier/sockets/AcceptorImplClientQueueDUnitTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/DestroyIndexCommandsDUnitTest.java
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].