浏览代码

Merge pull request #498 from mailgun/maxim/vagrant

Make sure the toxiproxy path is based in the repository root
Evan Huus 10 年之前
父节点
当前提交
bcfa33ec9c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      vagrant/boot_cluster.sh

+ 1 - 1
vagrant/boot_cluster.sh

@@ -3,7 +3,7 @@
 set -ex
 
 # Launch and wait for toxiproxy
-vagrant/run_toxiproxy.sh &
+${REPOSITORY_ROOT}/vagrant/run_toxiproxy.sh &
 while ! nc -q 1 localhost 2181 </dev/null; do echo "Waiting"; sleep 1; done
 while ! nc -q 1 localhost 9092 </dev/null; do echo "Waiting"; sleep 1; done