Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Cole committed Sep 26, 2019
1 parent 10cf0a0 commit 63a8fbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,7 @@
<java>SLASHSTAR_STYLE</java>
</mapping>
<excludes>
<exclude>travis/wait-for-it.sh</exclude>
<exclude>.travis.yml</exclude>
<exclude>.gitignore</exclude>
<exclude>.mvn/**</exclude>
Expand Down
4 changes: 2 additions & 2 deletions travis/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ test_server() {
exit $exit_status
fi

health_check_result=$(curl --silent localhost:9411/actuator/health | jq -r .details.zipkin.status)
health_check_result=$(curl --silent localhost:9411/health | jq -r .details.zipkin.status)

if [ "$health_check_result" != "UP" ]; then
echo "Health check failed!"
curl --silent localhost:9411/actuator/health | jq .
curl --silent localhost:9411/health | jq .
exit 1
else
echo "Health check status is up!"
Expand Down

0 comments on commit 63a8fbf

Please sign in to comment.