You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by zh...@apache.org on 2018/09/14 06:46:03 UTC

[geode] branch feature/GEODE-5729 updated (18ca8cb -> b926be4)

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

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


 discard 18ca8cb  GEODE-5729: when DistributedCacheOperation needs 2 messages, should let             the notifyOnly message to trigger callbacks             And computeCompressedShort should not pack inhibitAllNotifications
     add ea5c500  GEODE-5712: Increase Awaitility timeout (#2447)
     add d9bb24d  GEODE-5605: After removeAll/PutAll messages are processed on replicas, check for cache close is done. (#2450)
     add 4290946  GEODE-4273: overhaul DiskRegionJUnitTest (#2449)
     add bafaeff  Adding IntelliJ setup instructions to BUILDING.md (#2456)
     add 4fbe655  GEODE-5727: rework how ResultModel deal with file contents. (#2460)
     add b7df388  GEODE-5094: Replace flaky expiration with prexisting better one
     add e9ca513  GEODE-5725: Use values large enough (> 8 bytes) to force off-heap storage (#2459)
     add 8302a28  GEODE-5600 - Run createVersionPropertiesFile on SHA change (#2457)
     add 7460797  GEODE-5700: Removed stopping cache server explicitly (#2433)
     add 5e35490  GEODE-5716: GfshRule improvement (#2454)
     add b926be4  GEODE-5729: when DistributedCacheOperation needs 2 messages, should let             the notifyOnly message to trigger callbacks             And computeCompressedShort should not pack inhibitAllNotifications

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   (18ca8cb)
            \
             N -- N -- N   refs/heads/feature/GEODE-5729 (b926be4)

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:
 BUILDING.md                                        |   57 +
 ci/pipelines/geode-build/jinja.template.yml        |    1 -
 ci/pipelines/pull-request/jinja.template.yml       |    2 -
 ci/scripts/build.sh                                |    2 +-
 ci/scripts/execute_tests.sh                        |    5 +-
 ci/scripts/windows/test-run.sh                     |    2 -
 geode-assembly/build.gradle                        |   10 +-
 geode-core/build.gradle                            |   27 +-
 .../distributed/GrantorFailoverDUnitTest.java      |   18 +-
 ...ExportClusterConfigurationCommandDUnitTest.java |   68 +-
 .../ClusterConfigImportDUnitTest.java              |   60 +-
 .../org/apache/geode/cache/ProxyJUnitTest.java     |  107 -
 .../cache/RegionExpirationIntegrationTest.java     |   20 +-
 .../cache/DiskRegionAttributesIntegrationTest.java |  413 ++
 .../DiskRegionCompactorCloseIntegrationTest.java   |  189 +
 .../geode/internal/cache/DiskRegionJUnitTest.java  | 4040 ++++++++++----------
 .../result/model/ResultModelIntegrationTest.java   |   92 +
 .../geode/internal/cache/AbstractRegion.java       |    5 +
 .../geode/internal/cache/DistributedRegion.java    |    4 +
 .../cache/InternalPersistentRegion.java}           |   12 +-
 .../geode/internal/cache/InternalRegion.java       |    1 +
 .../apache/geode/internal/cache/LocalRegion.java   |    3 +-
 .../geode/internal/cache/PartitionedRegion.java    |   12 +
 .../cache/partitioned/PutAllPRMessage.java         |   28 +-
 .../cache/partitioned/RemoveAllPRMessage.java      |   28 +-
 .../ExportClusterConfigurationCommand.java         |    5 +-
 .../internal/cli/commands/ExportConfigCommand.java |   17 +-
 .../internal/cli/result/ModelCommandResult.java    |   11 +-
 .../internal/cli/result/model/FileResultModel.java |   86 +-
 .../internal/cli/result/model/ResultModel.java     |   34 +-
 .../geode/management/internal/cli/shell/Gfsh.java  |    6 +-
 .../internal/cache/CacheOperationMessageTest.java  |   50 +
 .../internal/cache/PartitionedRegionTest.java      |   45 +
 .../cache/partitioned/PutAllPRMessageTest.java     |   49 +
 .../cache/partitioned/RemoveAllPRMessageTest.java  |   28 +
 .../geode/test/junit/rules/ServerStarterRule.java  |   11 +-
 .../test/junit/assertions/ResultModelAssert.java   |   50 +
 .../geode/test/junit/rules/gfsh/GfshExecution.java |   59 +
 .../geode/test/junit/rules/gfsh/GfshRule.java      |   82 +-
 .../geode/test/junit/rules/gfsh/GfshScript.java    |  148 +-
 .../junit/rules/gfsh/internal/ProcessLogger.java   |   39 +-
 .../geode/internal/cache/wan/WANTestBase.java      |   10 +-
 .../cli/commands/ExportConfigCommandDUnitTest.java |    4 +-
 .../internal/cli/commands/CommandOverHttpTest.java |    5 +-
 gradle.properties                                  |    8 +-
 45 files changed, 3310 insertions(+), 2643 deletions(-)
 create mode 100644 geode-core/src/integrationTest/java/org/apache/geode/internal/cache/DiskRegionAttributesIntegrationTest.java
 create mode 100644 geode-core/src/integrationTest/java/org/apache/geode/internal/cache/DiskRegionCompactorCloseIntegrationTest.java
 create mode 100644 geode-core/src/integrationTest/java/org/apache/geode/management/internal/cli/result/model/ResultModelIntegrationTest.java
 copy geode-core/src/main/java/org/apache/geode/{cache/asyncqueue/internal/InternalAsyncEventQueue.java => internal/cache/InternalPersistentRegion.java} (71%)
 create mode 100644 geode-core/src/test/java/org/apache/geode/internal/cache/partitioned/PutAllPRMessageTest.java
 create mode 100644 geode-junit/src/main/java/org/apache/geode/test/junit/assertions/ResultModelAssert.java