This is an automated email from the ASF dual-hosted git repository.
zhouxj pushed a change to branch feature/GEODE-6143-9
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard e4f7df2 GEODE-6143: remove PowerMock from
HARegionQueueIntegrationTest GEODE-6143: remove PowerMock from
HARegionQueueJUnitTest
add fff4eb7 GEODE-6103 RegionCreateFunction takes RegionConfig in
argument (#2998)
add d5bcc53 GEODE-6223: Add resolveDependencies to Build test job.
add 2242de9 Merge pull request #3021 from PurelyApplied/geode-6223
add d41ab83 GEODE-6143: remove PowerMock from
HARegionQueueIntegrationTest GEODE-6143: remove PowerMock from
HARegionQueueJUnitTest
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 (e4f7df2)
\
N -- N -- N refs/heads/feature/GEODE-6143-9 (d41ab83)
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:
ci/scripts/execute_build.sh | 2 +-
.../jdbc/internal/cli/CreateDataSourceCommand.java | 17 +-
.../cli/commands/CreateRegionCommandDUnitTest.java | 98 ++++-
...egionCommandPersistsConfigurationDUnitTest.java | 14 +-
.../CreateRegionCommandIntegrationTest.java | 17 +-
.../org/apache/geode/cache/AttributesFactory.java | 5 +-
.../java/org/apache/geode/cache/DataPolicy.java | 18 +
.../org/apache/geode/cache/EvictionAction.java | 4 +-
.../org/apache/geode/cache/EvictionAlgorithm.java | 4 +-
.../org/apache/geode/cache/EvictionAttributes.java | 13 +-
.../org/apache/geode/cache/ExpirationAction.java | 15 +
.../apache/geode/cache/PartitionAttributes.java | 4 +-
.../java/org/apache/geode/cache/RegionFactory.java | 2 +-
.../geode/cache/configuration/CacheElement.java | 4 +
.../geode/cache/configuration/DeclarableType.java | 3 +-
.../geode/cache/configuration/DiskDirsType.java | 3 +-
.../configuration/RegionAttributesDataPolicy.java | 4 +-
.../RegionAttributesIndexUpdateType.java | 4 +-
.../cache/configuration/RegionAttributesType.java | 17 +-
.../geode/cache/configuration/RegionConfig.java | 5 +-
.../internal/cache/EvictionAttributesImpl.java | 66 ++++
.../internal/cache/PartitionAttributesImpl.java | 64 +++
.../internal/cache/execute/InternalFunction.java | 1 -
.../geode/management/internal/cli/CliUtil.java | 8 +-
.../cli/commands/CreateJndiBindingCommand.java | 17 +-
.../internal/cli/commands/CreateRegionCommand.java | 433 +++++++++++----------
.../internal/cli/domain/ExpirationArgs.java | 59 +++
.../internal/cli/domain/PartitionArgs.java | 92 +++++
.../internal/cli/domain/RegionConfigFactory.java | 334 +++++++++++-----
.../cli/exceptions/EntityExistsException.java | 35 +-
...tionArgs.java => CreateRegionFunctionArgs.java} | 27 +-
.../cli/functions/GatewaySenderCreateFunction.java | 53 +--
.../cli/functions/RegionCreateFunction.java | 411 +++++++++----------
.../internal/cli/functions/RegionFunctionArgs.java | 32 --
.../management/internal/cli/i18n/CliStrings.java | 54 +--
.../management/internal/cli/util/RegionPath.java | 6 +-
.../sanctioned-geode-core-serializables.txt | 11 +
.../cli/commands/CreateRegionCommandTest.java | 53 +--
.../cli/domain/RegionConfigFactoryTest.java | 211 +++++++---
.../cli/commands/CreateRegionCommandDUnitTest.java | 39 +-
40 files changed, 1394 insertions(+), 865 deletions(-)
create mode 100644
geode-core/src/main/java/org/apache/geode/management/internal/cli/domain/ExpirationArgs.java
create mode 100644
geode-core/src/main/java/org/apache/geode/management/internal/cli/domain/PartitionArgs.java
copy
geode-core/src/main/java/org/apache/geode/management/internal/cli/functions/{DestroyDiskStoreFunctionArgs.java
=> CreateRegionFunctionArgs.java} (60%)