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 2019/10/29 16:23:29 UTC

[geode] branch feature/GEODE-7258 updated (57a1d2f -> 02211bc)

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

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


 discard 57a1d2f  Trigger CI
 discard d4d9daf  handle a socket closed exception
 discard f8ee8eb  Trigger CI
 discard b62dd4c  GEODE-7258: The function retry logic is modified to handle exception thrown, while trying to connect to a server thats shutdown/closed.
     add fcfe0ad  GEODE-7363: Add member type common tag
     add 9f50198  GEODE-7350: Do not suspect hydra.MasterDescription.master.locators={}
     add 7f29489  GEODE-7355: Refactored dependency on DistributionStats to use a Funct… (#4228)
     add 850f6d9  GEODE-7326: Add cache gets timers (#4223)
     add 02211bc  GEODE-7258: The function retry logic is modified to handle exception thrown, while trying to connect to a server thats shutdown/closed.

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   (57a1d2f)
            \
             N -- N -- N   refs/heads/feature/GEODE-7258 (02211bc)

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:
 .../apache/geode/metrics/CacheGetsTimerTest.java   | 527 +++++++++++++++++++++
 .../geode/metrics/MemberTypeCommonTagsTest.java    | 241 ++++++++++
 .../FunctionExecutionsTimerNoResultTest.java       |   2 +-
 .../tcpserver/TCPClientSSLIntegrationTest.java     |   3 +-
 .../internal/tcpserver/TCPServerSSLJUnitTest.java  |   3 +-
 .../internal/PooledExecutorWithDMStats.java        |   9 +-
 .../distributed/internal/tcpserver/TcpServer.java  |  20 +-
 .../geode/internal/cache/CachePerfStats.java       |   3 +
 .../geode/internal/cache/InternalRegion.java       |   1 +
 .../apache/geode/internal/cache/LocalRegion.java   |   1 +
 .../geode/internal/cache/RegionPerfStats.java      |  67 ++-
 .../apache/geode/internal/cache/RegionStats.java   |   3 +
 .../cache/tier/sockets/TcpServerFactory.java       |   4 +-
 .../internal/cache/tier/sockets/command/Get70.java |  41 +-
 .../cache/tier/sockets/command/GetEntry70.java     |   7 +-
 .../internal/logging/CoreLoggingExecutors.java     |   6 +-
 .../InternalDistributedSystemMetricsService.java   |  75 ++-
 .../MembershipDependenciesJUnitTest.java           |  10 +
 .../tcpserver/TcpServerDependenciesTest.java       |   2 -
 .../geode/internal/cache/RegionPerfStatsTest.java  | 203 ++++++--
 .../cache/tier/sockets/command/Get70Test.java      | 167 +++++--
 ...DistributedSystemMetricsServiceBuilderTest.java |  81 +++-
 ...nternalDistributedSystemMetricsServiceTest.java | 119 +++--
 .../apache/geode/test/greplogs/LogConsumer.java    |   2 +
 .../org/apache/geode/test/greplogs/Patterns.java   |   4 +-
 .../geode/test/greplogs/LogConsumerTest.java       |  10 +
 .../org/apache/geode/test/assertj/Conditions.java  |   9 +-
 .../apache/geode/test/micrometer/TimerAssert.java  |  27 ++
 geode-logging/build.gradle                         |   2 +
 .../internal/logging/LoggingDependenciesTest.java  |  22 +-
 30 files changed, 1456 insertions(+), 215 deletions(-)
 create mode 100644 geode-assembly/src/acceptanceTest/java/org/apache/geode/metrics/CacheGetsTimerTest.java
 create mode 100644 geode-assembly/src/acceptanceTest/java/org/apache/geode/metrics/MemberTypeCommonTagsTest.java
 copy buildSrc/src/test/java/org/apache/geode/javac/CompilerException.java => geode-junit/src/main/java/org/apache/geode/test/assertj/Conditions.java (78%)
 copy geode-serialization/src/test/java/org/apache/geode/internal/serialization/SerializationDependenciesJUnitTest.java => geode-logging/src/test/java/org/apache/geode/internal/logging/LoggingDependenciesTest.java (74%)