We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9653bfe commit fa44947Copy full SHA for fa44947
1 file changed
tests/bin/test-integration.sh
@@ -46,9 +46,11 @@ log_phase "Waiting for etcd/fleet"
46
WAIT_TIME=1
47
until deisctl --request-timeout=1 list >/dev/null 2>&1; do
48
(( WAIT_TIME += 1 ))
49
- if [ $WAIT_TIME -gt 300 ]; then
+ if [ $WAIT_TIME -gt 300 ]; then
50
log_phase "Timeout waiting for etcd/fleet"
51
- exit 1;
+ # run deisctl one last time without eating the error, so we can see what's up
52
+ deisctl --request-timeout=1 list
53
+ exit 1;
54
fi
55
done
56
0 commit comments