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

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


 discard 60e90b3  GEODE-8190: Clean up tests and automate Geode version. 
(#5243) (#5293)
    omit 4b7a5dc  GEODE-8190 - Completed GeodeJarModuleFinder to register and 
load Modules. (#5234)
    omit a852081  GEODE-8148 - Implement unloadModule. (#5151)
    omit 2004f82  GEODE-8137 - Implement loadService. (#5136)
    omit b0a2add  GEODE-8043 - Create JBossModuleService and implement 
loadModule. (#5081)
    omit 112bdec  GEODE-8041 - Create ManagementService interface. (#5062)
    omit 30370ca  GEODE-8037 - Create BootstrappingService interface. (#5046)
     add 210dc4f  GEODE-8250: Geode Logging doc changes (#5294)
     add 5256fde  GEODE-8288: Match Native Redis's glob-style pattern (#5282)
     add d740a70  GEODE-8239 - Add gradle config to add 'Class-Path' and 
'Dependent-Modules' attirbutes to manifest file. (#5297)
     add ba6e44c  GEODE-8250: Create new custom log config acceptance tests 
(#5268)
     add eed47f4  Fix metric-tools image python requirements. (#5298)
     add ab83b61  GEODE-8285: Change location of generated test file to build 
dir and fix error message path for sanctioned text file (#5280)
     add 5732a1c  GEODE-8095 Further rework of the RestoreRedundancy data 
objects for serialization (#5281)
     new a3f9e9c  GEODE-8037 - Create BootstrappingService interface. (#5046)
     new 118739f  GEODE-8041 - Create ManagementService interface. (#5062)
     new ec2f147  GEODE-8043 - Create JBossModuleService and implement 
loadModule. (#5081)
     new 276ff15  GEODE-8137 - Implement loadService. (#5136)
     new f33ab86  GEODE-8148 - Implement unloadModule. (#5151)
     new 0ffcd7c  GEODE-8190 - Completed GeodeJarModuleFinder to register and 
load Modules. (#5234)
     new e41093d  GEODE-8190: Clean up tests and automate Geode version. 
(#5243) (#5293)

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   (60e90b3)
            \
             N -- N -- N   refs/heads/feature/GEODE-8067 (e41093d)

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 7 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:
 ci/images/metric-tools/Dockerfile                  |   1 +
 .../LocatorWithCustomLogConfigAcceptanceTest.java  | 291 +++++++++++++++++++++
 .../ServerWithCustomLogConfigAcceptanceTest.java   | 220 ++++++++++++++++
 .../cli/commands/StartLocatorAcceptanceTest.java   |  61 ++++-
 ...stomLogConfigAcceptanceTestWithGeodePlugins.xml |  12 +-
 ...LogConfigAcceptanceTestWithoutGeodePlugins.xml} |  10 +-
 ...stomLogConfigAcceptanceTestWithGeodePlugins.xml |  12 +-
 ...LogConfigAcceptanceTestWithoutGeodePlugins.xml} |  10 +-
 .../RestoreRedundancyOperationDUnitTest.java       |   4 +-
 .../codeAnalysis/sanctionedDataSerializables.txt   |   4 +-
 .../SerializableRestoreRedundancyResultsImpl.java  |  16 +-
 ...rializableRestoreRedundancyResultsImplTest.java |  98 ++++---
 .../logging/configuring_log4j2.html.md.erb         |  32 ++-
 .../managing/logging/how_logging_works.html.md.erb |   2 +-
 .../internal/cli/commands/RedundancyCommand.java   |   2 +-
 .../AnalyzeDataSerializablesJUnitTestBase.java     |  31 ++-
 .../assertj/internal/AbstractLogFileAssert.java    |   5 +
 .../operation/RegionRedundancyStatusImpl.java      |  16 ++
 .../operation/RestoreRedundancyResultsImpl.java    | 108 +++++---
 .../operation/RestoreRedundancyRequest.java        |   2 +-
 .../management/runtime/RegionRedundancyStatus.java |   6 +-
 .../runtime/RestoreRedundancyResults.java          |   9 +-
 .../sanctioned-geode-management-serializables.txt  |   3 +-
 ...a => GlobPatternNativeRedisAcceptanceTest.java} |   6 +-
 .../key/KeysNativeRedisAcceptanceTest.java         |   6 -
 .../executor/GlobPatternIntegrationTest.java       | 264 +++++++++++++++++++
 .../internal/executor/key/KeysIntegrationTest.java |  10 +-
 .../geode/redis/internal/executor/GlobPattern.java |  48 +---
 .../redis/internal/executor/key/KeysExecutor.java  |  11 +-
 gradle/java.gradle                                 |  16 +-
 gradle/publish-java.gradle                         |  45 ++++
 31 files changed, 1164 insertions(+), 197 deletions(-)
 create mode 100644 
geode-assembly/src/acceptanceTest/java/org/apache/geode/logging/LocatorWithCustomLogConfigAcceptanceTest.java
 create mode 100644 
geode-assembly/src/acceptanceTest/java/org/apache/geode/logging/ServerWithCustomLogConfigAcceptanceTest.java
 copy 
geode-log4j/src/integrationTest/resources/org/apache/geode/logging/log4j/internal/impl/GeodeConsoleAppenderWithCacheIntegrationTest_log4j2.xml
 => 
geode-assembly/src/acceptanceTest/resources/org/apache/geode/logging/LocatorWithCustomLogConfigAcceptanceTestWithGeodePlugins.xml
 (85%)
 copy 
geode-assembly/src/acceptanceTest/resources/org/apache/geode/{launchers/LocatorLauncherWithPulseAndCustomLogConfigAcceptanceTestWithoutGeodePlugins.xml
 => logging/LocatorWithCustomLogConfigAcceptanceTestWithoutGeodePlugins.xml} 
(81%)
 copy 
geode-log4j/src/integrationTest/resources/org/apache/geode/logging/log4j/internal/impl/GeodeConsoleAppenderWithCacheIntegrationTest_log4j2.xml
 => 
geode-assembly/src/acceptanceTest/resources/org/apache/geode/logging/ServerWithCustomLogConfigAcceptanceTestWithGeodePlugins.xml
 (85%)
 copy 
geode-assembly/src/acceptanceTest/resources/org/apache/geode/{launchers/LocatorLauncherWithPulseAndCustomLogConfigAcceptanceTestWithoutGeodePlugins.xml
 => logging/ServerWithCustomLogConfigAcceptanceTestWithoutGeodePlugins.xml} 
(81%)
 copy 
geode-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/{key/TTLNativeRedisAcceptanceTest.java
 => GlobPatternNativeRedisAcceptanceTest.java} (90%)
 mode change 100755 => 100644
 create mode 100644 
geode-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/GlobPatternIntegrationTest.java

Reply via email to