This is an automated email from the ASF dual-hosted git repository.
zhouxj pushed a change to branch feature/GEODE-5772
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard a92c904 GEODE-5772: fix the potential cache leaks caused by reconnect
add 1998a21 GEODE-5761: Exclude android-json transitive dependency (#2494)
add be52507 GEODE-5314: Cleanup and document MBeanStatsMonitor child
classes
add cc36c91 GEODE-5600: Fix extension developer issues with buildinfo
add 6112860 Merge pull request #2497 from
rhoughton-pivot/GEODE-5600-extension-conflicts
add 3e6c0a6 GEODE-5501: add logging in test base for debug
add 6984baa GEODE-5761: Fix checkPom for exclusion of android-json
add efb2e29 GEODE-5765: Clean up soft references faster in dunit tests
add 6006ec3 GEODE-5747: Handling SocketException in
InternalDataSerializer (#2484)
add cd17350 GEODE-5551: Replace thread interleaving mechanism in
LoginHandler...Test
new d3bb8d8 GEODE-5772: fix the potential cache leaks caused by reconnect
Co-authored-by Barry Oglesby
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 (a92c904)
\
N -- N -- N refs/heads/feature/GEODE-5772 (d3bb8d8)
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:
build.gradle | 6 +-
geode-core/build.gradle | 10 +-
.../cache/NetSearchMessagingDUnitTest.java | 241 +++++++------
.../cache/PartitionedRegionMultipleDUnitTest.java | 10 +-
.../cache/versions/TombstoneDUnitTest.java | 20 +-
.../geode/internal/InternalDataSerializer.java | 3 +-
.../beans/stats/AggregateRegionStatsMonitor.java | 319 +++++++++---------
.../internal/beans/stats/GCStatsMonitor.java | 73 ++--
.../beans/stats/GatewaySenderOverflowMonitor.java | 168 ++++++----
.../beans/stats/MemberLevelDiskMonitor.java | 371 +++++++++++----------
.../internal/beans/stats/VMStatsMonitor.java | 114 ++++---
.../internal/InternalDataSerializerJUnitTest.java | 19 ++
.../stats/AggregateRegionStatsMonitorTest.java | 244 ++++++++++++++
.../internal/beans/stats/GCStatsMonitorTest.java | 84 +++++
.../stats/GatewaySenderOverflowMonitorTest.java | 177 ++++++++++
.../beans/stats/MemberLevelDiskMonitorTest.java | 230 +++++++++++++
.../internal/beans/stats/VMStatsMonitorTest.java | 142 ++++++++
.../dunit/internal/JUnit4DistributedTestCase.java | 7 +-
.../test/dunit/standalone/ProcessManager.java | 1 +
geode-junit/build.gradle | 4 +-
geode-junit/src/test/resources/expected-pom.xml | 6 +
geode-web/build.gradle | 4 +-
.../support/LoginHandlerInterceptorJUnitTest.java | 332 ++++++++----------
23 files changed, 1764 insertions(+), 821 deletions(-)
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/AggregateRegionStatsMonitorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/GCStatsMonitorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/GatewaySenderOverflowMonitorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/MemberLevelDiskMonitorTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/beans/stats/VMStatsMonitorTest.java