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

[geode] branch feature/membership-only-test-wip updated (99cf846 -> f1154b8)

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

bschuchardt pushed a change to branch feature/membership-only-test-wip
in repository https://gitbox.apache.org/repos/asf/geode.git.


 discard 99cf846  fixes for failing unit tests
 discard 052e092  test multiple membership managers and a locator with minimal geode-core dependencies
     add 540bd0e  GEODE-7541: Clean up of auto-generated catch blocks. (#4520)
     add c2af830  GEODE-7541: revert one change (#4526)
     add 8944e89  GEODE-7545: Remove dependency on AltertingAction from membership
     add 61af622  GEODE-7583: allow "status locator" to work with ssl enabled locators (#4529)
     add ceea971  GEODE-7541: move SocketCreator localhost lookup to geode-common (#4527)
     add 94dd56a  test multiple membership managers and a locator with minimal geode-core dependencies
     add 000980b  fixes for failing unit tests
     add f1154b8  simplifying tests and removing SocketCreator dependency

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   (99cf846)
            \
             N -- N -- N   refs/heads/feature/membership-only-test-wip (f1154b8)

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/CacheCommonTagsTest.java  |   3 +-
 .../cli/commands/StatusLocatorCommandSSLTest.java  | 103 ++++++++
 .../apache/geode/internal/inet/LocalHostUtil.java  | 286 +++++++++++++++++++++
 .../distributed/DistributedSystemDUnitTest.java    |   2 +-
 .../geode/distributed/HostedLocatorsDUnitTest.java |  88 ++++---
 .../LocatorLauncherLocalIntegrationTest.java       |   2 +-
 .../LocatorLauncherRemoteIntegrationTest.java      |   2 +-
 .../ServerLauncherLocalIntegrationTest.java        |   2 +-
 .../ServerLauncherRemoteIntegrationTest.java       |   2 +-
 .../internal/membership/MembershipJUnitTest.java   |   8 +-
 .../gms/MemberIdentifierFactoryImplTest.java       |   6 +-
 .../membership/gms/MembershipOnlyJUnitTest.java    |  41 +--
 .../gms/fd/GMSHealthMonitorJUnitTest.java          |   4 +-
 .../locator/GMSLocatorRecoveryIntegrationTest.java |   4 +-
 .../internal/net/SSLSocketIntegrationTest.java     |  50 ++--
 .../GemFireStatSamplerIntegrationTest.java         |   2 +-
 .../SimpleStatSamplerIntegrationTest.java          |   3 +-
 ...ederatingManagerConcurrencyIntegrationTest.java |   2 +-
 .../apache/geode/admin/GemFireMemberStatus.java    |   4 +-
 .../internal/DistributedSystemHealthMonitor.java   |   4 +-
 .../admin/internal/ManagedEntityConfigImpl.java    |   3 +-
 .../java/org/apache/geode/distributed/Locator.java |   3 +-
 .../apache/geode/distributed/LocatorLauncher.java  |   5 +-
 .../apache/geode/distributed/ServerLauncher.java   |   6 +-
 .../internal/AbstractDistributionConfig.java       |  22 +-
 .../internal/ClusterDistributionManager.java       |   4 +-
 .../internal/DistributionConfigImpl.java           |   3 +-
 .../distributed/internal/InternalLocator.java      |   6 +-
 .../internal/LonerDistributionManager.java         |   3 +-
 .../geode/distributed/internal/ServerLocation.java |   4 +-
 .../geode/distributed/internal/ServerLocator.java  |   6 +-
 .../geode/distributed/internal/StartupMessage.java |   4 +-
 .../distributed/internal/direct/DirectChannel.java |   4 +-
 .../membership/InternalDistributedMember.java      |   7 +-
 .../adapter/TcpSocketCreatorAdapter.java           |   3 +-
 .../internal/membership/gms/GMSUtil.java           |   4 +-
 .../membership/gms/messenger/JGroupsMessenger.java |   3 +-
 .../org/apache/geode/internal/AvailablePort.java   |   4 +-
 .../apache/geode/internal/VersionDescription.java  |   4 +-
 .../admin/remote/AlertListenerMessage.java         |   5 +
 .../admin/remote/DistributionLocatorId.java        |   9 +-
 .../internal/admin/remote/FetchHostResponse.java   |   4 +-
 .../geode/internal/cache/GemFireCacheImpl.java     |   5 +-
 .../partitioned/PersistentBucketRecoverer.java     |   4 +-
 .../internal/cache/tier/sockets/AcceptorImpl.java  |   5 +-
 .../geode/internal/net/InetAddressUtils.java       |   5 +-
 .../apache/geode/internal/net/SocketCreator.java   | 253 +-----------------
 .../geode/internal/statistics/HostStatSampler.java |   3 +-
 .../internal/statistics/OsStatisticsProvider.java  |   4 +-
 .../internal/statistics/StatArchiveWriter.java     |   3 +-
 .../org/apache/geode/internal/tcp/TCPConduit.java  |   3 +-
 .../management/internal/JmxManagerAdvisee.java     |   4 +-
 .../geode/management/internal/ManagementAgent.java |   5 +-
 .../geode/management/internal/RestAgent.java       |   6 +-
 .../internal/beans/MemberMBeanBridge.java          |   4 +-
 .../utils/ClusterConfigurationStatusRetriever.java |   4 +-
 .../geode/management/internal/util/HostUtils.java  |   4 +-
 .../internal/StartupMessageDataJUnitTest.java      |   6 +-
 .../MembershipDependenciesJUnitTest.java           |  11 +-
 .../membership/MembershipViewJUnitTest.java        |   6 +-
 .../auth/AbstractGMSAuthenticatorTestCase.java     |   4 +-
 .../PartitionedRegionLoadModelJUnitTest.java       |   4 +-
 .../cache/versions/RegionVersionVectorTest.java    |   4 +-
 .../apache/geode/internal/tcp/ConnectionTest.java  |   2 +-
 .../internal/cli/commands/ConnectCommand.java      |  44 ----
 .../internal/cli/commands/OfflineGfshCommand.java  |  53 ++++
 .../commands/lifecycle/StatusLocatorCommand.java   |  24 +-
 .../geode/memcached/GemFireMemcachedServer.java    |   5 +-
 .../org/apache/geode/redis/RedisDistDUnitTest.java |   6 +-
 .../org/apache/geode/redis/GeodeRedisServer.java   |   4 +-
 .../tcpserver/TcpServerGossipVersionDUnitTest.java |   4 +-
 .../CreateGatewayReceiverCommandDUnitTest.java     |   4 +-
 .../internal/cache/wan/GatewayReceiverImpl.java    |   4 +-
 .../cache/wan/GatewayReceiverImplTest.java         |   4 +-
 74 files changed, 690 insertions(+), 545 deletions(-)
 create mode 100644 geode-assembly/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/StatusLocatorCommandSSLTest.java
 create mode 100644 geode-common/src/main/java/org/apache/geode/internal/inet/LocalHostUtil.java