Don't use fast datapath for our inter-container connection tests.

This commit is contained in:
Tom Wilkie
2015-10-22 15:18:38 +00:00
parent 7fd5a315e3
commit f3b66428db
2 changed files with 4 additions and 4 deletions

View File

@@ -4,11 +4,11 @@
start_suite "Test short lived connections between containers"
weave_on $HOST1 launch
WEAVE_NO_FASTDP=true weave_on $HOST1 launch
scope_on $HOST1 launch
weave_on $HOST1 run -d --name nginx nginx
weave_on $HOST1 run -d --name client alpine /bin/sh -c "while true; do \
wget http://nginx.weave.local:80/ >/dev/null || true; \
wget http://nginx.weave.local:80/ -O - >/dev/null || true; \
sleep 1; \
done"

View File

@@ -4,8 +4,8 @@
start_suite "Test short lived connections between containers on different hosts"
weave_on $HOST1 launch $HOST1 $HOST2
weave_on $HOST2 launch $HOST1 $HOST2
WEAVE_NO_FASTDP=true weave_on $HOST1 launch $HOST1 $HOST2
WEAVE_NO_FASTDP=true weave_on $HOST2 launch $HOST1 $HOST2
scope_on $HOST1 launch
scope_on $HOST2 launch