You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2019/12/13 19:59:01 UTC

[geode] branch develop updated (b0fd10a -> 5928982)

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

klund pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git.


    from b0fd10a  GEODE-7563: eliminate home-grown ConcurrentHashSet (#4468)
     add b583e76  GEODE-7256: Cleanup Connection classes and tests
     add 3f575a8  GEODE-7256: Cleanup IgnoredException
     add 3040c73  GEODE-7256: Cleanup AlterRuntimeCommandDUnitTest
     add 021e129  GEODE-7256: Rename AlterRuntimeCommandDistributedTest
     add 5928982  GEODE-7256: Move CacheFactoryStaticsTest to IntegrationTest

No new revisions were added by this update.

Summary of changes:
 ...tTest.java => CacheFactoryIntegrationTest.java} |   23 +-
 .../cache/CacheFactoryStaticsIntegrationTest.java} |   61 +-
 .../internal/tcp/ConnectionIntegrationTest.java    |   61 +-
 .../admin/remote/RemoteGfManagerAgent.java         | 1009 +++++-----
 .../org/apache/geode/internal/tcp/Connection.java  | 2048 +++++++++-----------
 .../apache/geode/internal/tcp/ConnectionTable.java |  660 +++----
 .../org/apache/geode/internal/tcp/TCPConduit.java  |  375 ++--
 .../admin/remote/RemoteGfManagerAgentTest.java     |   81 +-
 .../geode/internal/tcp/ConnectionJUnitTest.java    |  108 --
 .../geode/internal/tcp/ConnectionTableTest.java    |   22 +-
 .../apache/geode/internal/tcp/ConnectionTest.java  |   74 +-
 .../apache/geode/test/dunit/IgnoredException.java  |  191 +-
 .../cli/commands/AlterRuntimeCommandDUnitTest.java | 1210 ------------
 .../AlterRuntimeCommandDistributedTest.java        | 1376 +++++++++++++
 14 files changed, 3595 insertions(+), 3704 deletions(-)
 copy geode-core/src/integrationTest/java/org/apache/geode/internal/cache/{CacheServiceJUnitTest.java => CacheFactoryIntegrationTest.java} (68%)
 rename geode-core/src/{test/java/org/apache/geode/internal/cache/CacheFactoryStaticsTest.java => integrationTest/java/org/apache/geode/internal/cache/CacheFactoryStaticsIntegrationTest.java} (64%)
 delete mode 100755 geode-core/src/test/java/org/apache/geode/internal/tcp/ConnectionJUnitTest.java
 delete mode 100644 geode-web/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/AlterRuntimeCommandDUnitTest.java
 create mode 100644 geode-web/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/AlterRuntimeCommandDistributedTest.java