This is an automated email from the ASF dual-hosted git repository.
bschuchardt pushed a change to branch feature/GEODE-6034
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard aa00d73 GEODE-6034 Protobuf clients should not access or modify
internal regions
discard 3244e48 empty commit to trigger another build
discard 3723336 GEODE-6034 Protobuf clients should not access or modify
internal regions
add 5a8ef65 GEODE-5971: Refactor Start/Status/Stop Locator commands to
return ResultModel (#2869)
add 4c06ba4 GEODE-6059: PR pipeline gets merge-base from resource (#2877)
add be99d7b GEODE-6073: All files have lf endings (#2873)
add ed28310 GEODE-5076 jmx client should not access or modify internal
regions
add 7cd2f0c GEODE-6065: Continue event processing when hostname lookup
fails (#2883)
add f2e43b0 GEODE-6064: redact the password in describeConfig command
(#2863)
add 9f7a1c0 GEODE-6034 Protobuf clients should not access or modify
internal regions
add 701b2ca GEODE-6034 Protobuf clients should not access or modify
internal regions
add 0bb07de GEODE-6034 Protobuf clients should not access or modify
internal regions
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 (aa00d73)
\
N -- N -- N refs/heads/feature/GEODE-6034 (0bb07de)
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.
No new revisions were added by this update.
Summary of changes:
.gitattributes | 2 +-
ci/scripts/repeat-new-tests.sh | 21 ++-
ci/scripts/windows/test-run.sh | 2 +-
.../client/internal/pooling/PooledConnection.java | 2 +-
.../membership/InternalDistributedMember.java | 22 ++-
.../geode/internal/cache/GemFireCacheImpl.java | 6 +-
.../apache/geode/internal/cache/InternalCache.java | 2 +-
.../cache/InternalCacheForClientAccess.java | 22 ++-
.../internal/cache/xmlcache/CacheCreation.java | 3 +-
.../apache/geode/management/ManagementService.java | 3 +-
.../apache/geode/management/cli/GfshCommand.java | 5 +-
.../management/internal/BaseManagementService.java | 5 +-
.../management/internal/FederatingManager.java | 9 +-
.../management/internal/JmxManagerAdvisee.java | 6 +-
.../management/internal/JmxManagerLocator.java | 12 +-
.../geode/management/internal/LocalManager.java | 4 +-
.../geode/management/internal/ManagementAgent.java | 13 +-
.../management/internal/ManagementFunction.java | 3 +-
.../apache/geode/management/internal/Manager.java | 5 +-
.../internal/SystemManagementService.java | 8 +-
.../management/internal/beans/BeanUtilFuncs.java | 4 +-
.../internal/beans/CacheServerBridge.java | 3 -
.../internal/beans/QueryDataFunction.java | 18 +-
.../cli/commands/DescribeConfigCommand.java | 92 +++++-----
.../internal/cli/commands/StartLocatorCommand.java | 54 +++---
.../internal/cli/commands/StartServerCommand.java | 23 ++-
.../commands/lifecycle/StatusLocatorCommand.java | 24 +--
.../cli/commands/lifecycle/StopLocatorCommand.java | 13 +-
.../cli/functions/DataCommandFunction.java | 3 +-
.../cli/functions/DestroyIndexFunction.java | 3 +-
.../internal/cli/functions/ExportDataFunction.java | 3 +-
.../internal/cli/functions/ExportLogsFunction.java | 10 +-
.../GetMemberConfigInformationFunction.java | 8 +-
.../functions/GetRegionDescriptionFunction.java | 3 +-
.../internal/cli/functions/ImportDataFunction.java | 4 +-
.../cli/functions/RegionAlterFunction.java | 3 +-
.../cli/functions/RegionCreateFunction.java | 3 +-
.../cli/functions/RegionDestroyFunction.java | 3 +-
.../cli/functions/UserFunctionExecution.java | 2 +-
.../internal/cli/modes/CommandModes.java | 11 +-
.../internal/configuration/domain/XmlEntity.java | 3 +-
.../functions/GetRegionNamesFunction.java | 3 +-
.../cli/commands/DescribeConfigCommandTest.java | 40 +++++
.../cli/commands/ExportLogsCommandTest.java | 8 +
.../cli/functions/RegionDestroyFunctionTest.java | 10 +-
.../security/GfshCommandsSecurityTestBase.java | 12 +-
.../OutputCapturingServerConnectionTest.java | 3 +-
.../tier/sockets/ProtobufServerConnectionTest.java | 3 +-
.../protobuf/ProtobufStreamProcessorTest.java | 3 +-
.../protobuf/security/SecureCacheImplTest.java | 55 +++---
.../security/SecureFunctionServiceImplTest.java | 3 +-
...ionOnGroupRequestOperationHandlerJUnitTest.java | 3 +-
...onOnMemberRequestOperationHandlerJUnitTest.java | 3 +-
...onOnRegionRequestOperationHandlerJUnitTest.java | 3 +-
...egionNamesRequestOperationHandlerJUnitTest.java | 3 +-
.../GetSizeRequestOperationHandlerJUnitTest.java | 3 +-
.../v1/operations/OperationHandlerJUnitTest.java | 4 +-
...SenderEventRemoteDispatcherIntegrationTest.java | 189 +++++++++++++++++++++
.../web/controllers/CommonCrudController.java | 6 +-
gradle/spotless.gradle | 1 -
60 files changed, 544 insertions(+), 256 deletions(-)
create mode 100644
geode-wan/src/test/java/org/apache/geode/internal/cache/wan/GatewaySenderEventRemoteDispatcherIntegrationTest.java