Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upFix Java/wildfly-ee7 travis-ci build fail issue #1856
Conversation
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
|
Amazing catch; LGTM! |
added a commit
that referenced
this pull request
Jan 8, 2016
msmith-techempower
merged commit c7695e9
into
TechEmpower:master
Jan 8, 2016
1 check passed
continuous-integration/travis-ci/pr
The Travis CI build passed
Details
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
blee-techempower commentedJan 6, 2016
Fix build fail issue.
The error occurs because of Java 7.
Java 7 trying to use IPv6 to connect, but this framework uses IPv4.
So telling java to use IPv4 is developer's role.
After I explicitly indicate this using java option, problem disappeared magically.
Sounds simple, but this kind of error is super hard to debug. So keep in mind.