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

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


 discard 52a1490  Hopefully final commit for now...
 discard 19b939b  More clean up. Hopefully cleaner implementation
 discard 576079a  More clean up. Hopefully cleaner implementation
 discard ec704cf  Fixed stuff
 discard c777272  Refactored stats to have public interfaces in own package 
Refactored DistributedSystem.java and InternalDistributedSystem.java to now 
contain a InternalDistributedSystemStats.java instead of being one Added 
Micrometer stats implementations Added StatsFactory, which currently only 
provides Micrometer implementations Moving geode-stats-common packages to base 
package of org.apache.geode.stats.common
     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 35d9bba  GEODE-3: remove dependency on sun.tools.java.CompilerError 
(#2468)
     new e0e5e84  Refactored stats to have public interfaces in own package 
Refactored DistributedSystem.java and InternalDistributedSystem.java to now 
contain a InternalDistributedSystemStats.java instead of being one Added 
Micrometer stats implementations Added StatsFactory, which currently only 
provides Micrometer implementations Moving geode-stats-common packages to base 
package of org.apache.geode.stats.common Adding 
`geode.metrics.prometheus.address` and `geode.experimental.stats.mi [...]

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   (52a1490)
            \
             N -- N -- N   refs/heads/feature/Micrometer (e0e5e84)

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:
 BUILDING.md                                        |   57 +
 .../org/apache/geode/javac/CompilerException.java  |    9 +-
 .../geode/javac/TestAnnotationProcessor.java       |    3 +-
 .../java/org/apache/geode/javac/TestCompiler.java  |    4 +-
 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/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-micrometer-stats/build.gradle.kts            |    2 +-
 .../micrometer/impl/MicrometerStatisticsManager.kt |   18 +-
 .../common/statistics/factory/StatsFactory.java    |    1 -
 .../geode/internal/cache/wan/WANTestBase.java      |   10 +-
 .../cli/commands/ExportConfigCommandDUnitTest.java |    4 +-
 .../internal/cli/commands/CommandOverHttpTest.java |    5 +-
 gradle.properties                                  |    8 +-
 50 files changed, 3277 insertions(+), 2663 deletions(-)
 copy geode-junit/src/main/java/org/apache/geode/test/compiler/TestObject.java 
=> buildSrc/src/test/java/org/apache/geode/javac/CompilerException.java (83%)
 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

Reply via email to