This is an automated email from the ASF dual-hosted git repository.
udo pushed a change to branch feature/GEODE-4685
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard f7cff19 GEODE-4685: added check to handle a null type registry
discard cf7d083 GEODE-4685: spotless
discard 883480b GEODE-4685: added check to handle a null type registry
discard c8ddf7e GEODE-4685: Spotless
discard 27a0d87 GEODE-4685: Amended JDBC connector code to pass in a Cache
for testing
discard 5b3b6cd GEODE-4685: Moving of static
DefaultQuery.setPdxReadSerialized to the TypeRegistry. Cleaned up the
overriding of readSerialized to reset to previous value. Added cache to
AbstractJdbcCallback.java so that children classes can access it. Replaced
AtomicLong with LongAdder.
add be8140d GEODE-4736: Updating statistics in ProtobufOpsProcessor
add 40fb4bd GEODE-3875: gfsh command to create jndi binding (#1507)
add fa1f2ac GEODE-4406: Improve authorization granularity for protobuf
(#1514)
add 42485b6 GEODE-4625: rework name collision check logic and add more
tests (#1505)
add f4433fc GEODE-4404: Move BackupWriter creation (#1521)
add 7980b1c GEODE-4743: Removed five dead classes.
add 967b9db GEODE-4744: Allow java.util.Map#get in OQL when security is
enabled
add 92278d4 GEODE-4753: fix permission for GetServer operation (#1524)
new 74c4461 GEODE-4685: Moving of static
DefaultQuery.setPdxReadSerialized to the TypeRegistry. Cleaned up the
overriding of readSerialized to reset to previous value. Added cache to
AbstractJdbcCallback.java so that children classes can access it. Replaced
AtomicLong with LongAdder.
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 (f7cff19)
\
N -- N -- N refs/heads/feature/GEODE-4685 (74c4461)
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:
.../java/org/apache/geode/admin/BackupStatus.java | 20 +-
.../admin/internal/AdminDistributedSystemImpl.java | 66 ++++-
.../RestrictedMethodInvocationAuthorizer.java | 11 +-
.../org/apache/geode/internal/SystemAdmin.java | 5 +-
.../cache/backup/AbstractBackupWriterConfig.java} | 38 ++-
.../cache/backup/BackupDataStoreHelper.java | 6 +-
.../geode/internal/cache/backup/BackupService.java | 9 +-
.../geode/internal/cache/backup/BackupTask.java | 37 +--
.../geode/internal/cache/backup/BackupUtil.java | 38 ++-
.../internal/cache/backup/BackupWriterFactory.java | 60 ++++
...ckup.java => FileSystemBackupWriterConfig.java} | 32 +--
.../geode/internal/cache/backup/PrepareBackup.java | 12 +-
.../cache/backup/PrepareBackupFactory.java | 20 +-
.../cache/backup/PrepareBackupOperation.java | 14 +-
.../cache/backup/PrepareBackupRequest.java | 19 +-
.../geode/internal/util/DebuggerSupport.java | 62 ----
.../geode/internal/util/SingletonCallable.java | 82 ------
.../apache/geode/internal/util/SingletonValue.java | 318 ---------------------
.../geode/internal/util/StackTraceCollector.java | 170 -----------
.../org/apache/geode/management/BackupStatus.java | 21 +-
.../geode/management/DistributedRegionMXBean.java | 4 -
.../internal/beans/DistributedSystemBridge.java | 71 ++---
.../internal/beans/MemberMBeanBridge.java | 63 ----
.../cli/commands/BackupDiskStoreCommand.java | 5 +-
.../cli/commands/CreateJndiBindingCommand.java | 5 +-
.../internal/cli/commands/CreateRegionCommand.java | 57 ++--
.../management/internal/cli/i18n/CliStrings.java | 5 +-
.../geode/redis/internal/RegionProvider.java | 8 +-
.../sanctioned-geode-core-serializables.txt | 1 -
.../org/apache/geode/cache/query/BugJUnitTest.java | 7 -
.../geode/cache/query/QueryServiceJUnitTest.java | 28 --
.../geode/cache/query/TypedIteratorJUnitTest.java | 3 -
.../functional/IndexPrimaryKeyUsageJUnitTest.java | 1 -
.../IndexUsageInNestedQueryJUnitTest.java | 1 -
.../cache/query/functional/MiscJUnitTest.java | 14 -
.../query/functional/NestedQueryJUnitTest.java | 2 -
.../RestrictedMethodInvocationAuthorizerTest.java | 10 +-
.../internal/index/IndexMaintainceJUnitTest.java | 32 +--
.../geode/cache30/CacheListenerTestCase.java | 3 -
.../apache/geode/cache30/DiskRegionTestImpl.java | 14 -
.../geode/cache30/MultiVMRegionTestCase.java | 11 -
.../apache/geode/cache30/ReconnectDUnitTest.java | 13 -
.../org/apache/geode/cache30/RegionTestCase.java | 206 -------------
.../AnalyzeSerializablesJUnitTest.java | 9 +-
.../backup/AbstractBackupWriterConfigTest.java | 86 ++++++
.../cache/backup/BackupDistributedTest.java | 14 +-
.../cache/backup/BackupIntegrationTest.java | 23 +-
.../backup/BackupPrepareAndFinishMsgDUnitTest.java | 7 +-
.../internal/cache/backup/BackupServiceTest.java | 5 +-
.../cache/backup/BackupWriterFactoryTest.java | 63 ++++
.../backup/FileSystemBackupWriterConfigTest.java | 74 +++++
.../backup/IncrementalBackupDistributedTest.java | 29 +-
.../cache/backup/PrepareBackupFactoryTest.java | 10 +-
.../cache/backup/PrepareBackupOperationTest.java | 14 +-
.../cache/backup/PrepareBackupRequestTest.java | 17 +-
.../PersistentPartitionedRegionTestBase.java | 4 +-
.../beans/DistributedSystemBridgeJUnitTest.java | 2 +-
.../cli/commands/CreateJndiBindingCommandTest.java | 8 +-
.../cli/commands/CreateRegionCommandDUnitTest.java | 96 ++++++-
.../CreateRegionCommandIntegrationTest.java | 4 +-
.../cli/commands/CreateRegionCommandTest.java | 1 +
...est.java => CreateRegionSecurityDUnitTest.java} | 31 +-
.../commands/DestroyRegionCommandDUnitTest.java | 13 +-
.../QuerySecurityAllowedQueriesDUnitTest.java | 32 +++
.../geode/security/query/data/QueryTestObject.java | 3 +
.../org/apache/geode/test/dunit/DebuggerUtils.java | 52 ----
.../apache/geode/codeAnalysis/excludedClasses.txt | 3 +-
.../codeAnalysis/sanctionedDataSerializables.txt | 4 +-
.../protobuf/v1/ProtobufOperationContext.java | 40 ++-
.../protocol/protobuf/v1/ProtobufOpsProcessor.java | 8 +-
.../AbstractFunctionRequestOperationHandler.java | 13 +
.../operations/GetAllRequestOperationHandler.java | 46 ++-
.../v1/operations/GetRequestOperationHandler.java | 10 +-
.../operations/PutAllRequestOperationHandler.java | 48 +++-
.../v1/operations/PutRequestOperationHandler.java | 39 +--
.../operations/RemoveRequestOperationHandler.java | 27 +-
.../registry/ProtobufOperationContextRegistry.java | 45 +--
...cySecurityProtobufConnectionStateProcessor.java | 6 +-
...NoSecurityProtobufConnectionStateProcessor.java | 6 +-
...obufConnectionAuthenticatingStateProcessor.java | 6 +-
...rotobufConnectionAuthorizingStateProcessor.java | 18 +-
.../ProtobufConnectionHandshakeStateProcessor.java | 6 +-
.../v1/state/ProtobufConnectionStateProcessor.java | 7 +-
...rotobufConnectionTerminatingStateProcessor.java | 6 +-
.../protobuf/v1/AuthorizationIntegrationTest.java | 229 ++++++++++++---
85 files changed, 1219 insertions(+), 1549 deletions(-)
copy
geode-core/src/{test/java/org/apache/geode/management/internal/cli/domain/MyCacheWriter.java
=>
main/java/org/apache/geode/internal/cache/backup/AbstractBackupWriterConfig.java}
(54%)
create mode 100644
geode-core/src/main/java/org/apache/geode/internal/cache/backup/BackupWriterFactory.java
copy
geode-core/src/main/java/org/apache/geode/internal/cache/backup/{FinishBackup.java
=> FileSystemBackupWriterConfig.java} (56%)
delete mode 100644
geode-core/src/main/java/org/apache/geode/internal/util/DebuggerSupport.java
delete mode 100644
geode-core/src/main/java/org/apache/geode/internal/util/SingletonCallable.java
delete mode 100644
geode-core/src/main/java/org/apache/geode/internal/util/SingletonValue.java
delete mode 100644
geode-core/src/main/java/org/apache/geode/internal/util/StackTraceCollector.java
create mode 100644
geode-core/src/test/java/org/apache/geode/internal/cache/backup/AbstractBackupWriterConfigTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/internal/cache/backup/BackupWriterFactoryTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/internal/cache/backup/FileSystemBackupWriterConfigTest.java
rename
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/{CreateRegionSecurityTest.java
=> CreateRegionSecurityDUnitTest.java} (70%)
delete mode 100755
geode-core/src/test/java/org/apache/geode/test/dunit/DebuggerUtils.java
--
To stop receiving notification emails like this one, please contact
[email protected].