Unverified Commit 92f3725f authored by Whyrusleeping's avatar Whyrusleeping Committed by GitHub

Merge pull request #5069 from ipfs/feat/cat-iptb-logs

cat iptb logs on iptb failure (for debugging CI)
parents 1f3a5fe4 8f95badb
......@@ -17,6 +17,17 @@ check_has_connection() {
grep "ipfs" "swarm_peers_$node" >/dev/null
}
iptb() {
if ! command iptb "$@"; then
case "$1" in
start|stop|connect)
test_fsh command iptb logs '*'
;;
esac
return 1
fi
}
startup_cluster() {
num_nodes="$1"
shift
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment