commit | 232cf5d3e45adf3d674487222ce68ade40a1eafe | [log] [tgz] |
---|---|---|
author | Andy Bavier <acb@cs.princeton.edu> | Thu Apr 28 16:43:18 2016 -0400 |
committer | Andy Bavier <acb@cs.princeton.edu> | Thu Apr 28 16:43:18 2016 -0400 |
tree | fe8bce89430e909f095be7c0621e78a729a1a98e | |
parent | 570f093145da872a677fe304e4528bf39f116942 [diff] |
http does not seem to work with automated testing
diff --git a/xos/configurations/common/wait_for_xos_port.sh b/xos/configurations/common/wait_for_xos_port.sh index dab6e70..3ed5833 100755 --- a/xos/configurations/common/wait_for_xos_port.sh +++ b/xos/configurations/common/wait_for_xos_port.sh
@@ -11,7 +11,7 @@ fi echo "Waiting for XOS to come up" -until http 0.0.0.0:$1 &> /dev/null +until curl 0.0.0.0:$1 &> /dev/null do sleep 1 RUNNING_CONTAINER=`sudo docker ps|grep "xos"|awk '{print $$NF}'`