commit | 5635dc9e69201dfeda19eee925f50fd992f479f8 | [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 | 9e18af8c5c736ee5bf62843eece0063fefbdf2cf | |
parent | 17a5095cfa47b723138ddd5ee3b835e1271e2ac9 [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}'`