commit ee396986d85df7cd736159d9031857573499877e Author: Nick Mathewson nickm@torproject.org Date: Wed Mar 13 10:17:58 2019 -0400
wait_for_bootstrap: When logging un-bootstrapped nodes, also log crashes
Previously, if you said wait_for_bootstrap, it would tell you if a node wasn't bootstrapped, but wouldn't help you notice whether it was crashed or running. --- lib/chutney/TorNet.py | 1 + 1 file changed, 1 insertion(+)
diff --git a/lib/chutney/TorNet.py b/lib/chutney/TorNet.py index e22afea..7269a00 100644 --- a/lib/chutney/TorNet.py +++ b/lib/chutney/TorNet.py @@ -1199,6 +1199,7 @@ class Network(object):
print("Bootstrap failed. Node status:") for c in controllers: + c.check(listRunning=False, listNonRunning=True) print(c.getLastBootstrapStatus())
return False