Преглед на файлове

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.
Nick Mathewson преди 6 години
родител
ревизия
ee396986d8
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1 0
      lib/chutney/TorNet.py

+ 1 - 0
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