You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2018/09/27 20:48:43 UTC

[1/2] activemq-artemis git commit: ARTEMIS-1894 Avoiding apache.org URL on codebase

Repository: activemq-artemis
Updated Branches:
  refs/heads/master c1a458bb6 -> 515a2e064


ARTEMIS-1894 Avoiding apache.org URL on codebase


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/1369690f
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/1369690f
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/1369690f

Branch: refs/heads/master
Commit: 1369690f574c2c97d1fa3930260eae5039b703c1
Parents: c1a458b
Author: Clebert Suconic <cl...@apache.org>
Authored: Thu Sep 27 14:30:50 2018 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Thu Sep 27 14:51:19 2018 -0400

----------------------------------------------------------------------
 .../org/apache/activemq/artemis/utils/NetworkHealthTest.java  | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/1369690f/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/NetworkHealthTest.java
----------------------------------------------------------------------
diff --git a/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/NetworkHealthTest.java b/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/NetworkHealthTest.java
index a654ff1..30e090c 100644
--- a/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/NetworkHealthTest.java
+++ b/artemis-commons/src/test/java/org/apache/activemq/artemis/utils/NetworkHealthTest.java
@@ -172,9 +172,8 @@ public class NetworkHealthTest {
       NetworkHealthCheck check = addCheck(new NetworkHealthCheck(null, 100, 100));
 
       // using two addresses for URI and localhost
-      check.parseAddressList("localhost, , 127.0.0.2").parseURIList("http://www.redhat.com, , http://www.apache.org");
+      check.parseAddressList("localhost, , 127.0.0.2");
       Assert.assertEquals(2, check.getAddresses().size());
-      Assert.assertEquals(2, check.getUrls().size());
    }
 
    @Test
@@ -182,9 +181,9 @@ public class NetworkHealthTest {
       NetworkHealthCheck check = addCheck(new NetworkHealthCheck(null, 100, 100));
 
       // using two addresses for URI and localhost
-      check.parseAddressList("localhost, , 127.0.0.2").parseURIList("http://www.redhat.com, , http://www.apache.org");
+      check.parseAddressList("localhost, , 127.0.0.2");
       Assert.assertEquals(2, check.getAddresses().size());
-      Assert.assertEquals(2, check.getUrls().size());
+      Assert.assertEquals(0, check.getUrls().size());
    }
 
    @Test


[2/2] activemq-artemis git commit: This closes #2337

Posted by cl...@apache.org.
This closes #2337


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/515a2e06
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/515a2e06
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/515a2e06

Branch: refs/heads/master
Commit: 515a2e064ca1e3d12abde29aad08b6b4371a451a
Parents: c1a458b 1369690
Author: Clebert Suconic <cl...@apache.org>
Authored: Thu Sep 27 16:48:31 2018 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Thu Sep 27 16:48:31 2018 -0400

----------------------------------------------------------------------
 .../org/apache/activemq/artemis/utils/NetworkHealthTest.java  | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------