Github user jbertram commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1881#discussion_r169429443
--- Diff:
artemis-commons/src/test/java/org/apache/activemq/artemis/utils/NetworkHealthTest.java
---
@@ -179,6 +182,7 @@ private void doCheck(String localaddress) throws
Exception {
}
+ @Ignore("doesn't work in Travis CI environment")
--- End diff --
From what I can tell the failure is due to the way the ping command is
being constructed and executed in
org.apache.activemq.artemis.core.server.NetworkHealthCheck#purePing (i.e. via
java.lang.ProcessBuilder). It appears the Travis CI environment simply won't
allow it. I'll investigate creating an assumption to test the environment.
---