Browse Source

fixup! test-network: Try a default start time of 120 seconds

teor 5 years ago
parent
commit
86fb60ac29
1 changed files with 5 additions and 3 deletions
  1. 5 3
      tools/test-network-impl.sh

+ 5 - 3
tools/test-network-impl.sh

@@ -11,9 +11,11 @@ fi
 # chutney starts verifying after CHUTNEY_START_TIME seconds,
 # keeps on trying for CHUTNEY_BOOTSTRAP_TIME seconds,
 # and then stops after CHUTNEY_STOP_TIME seconds.
-# Even the fastest chutney networks take 5-10 seconds for their first consensus
-# and then 10 seconds after that for relays to bootstrap and upload descriptors
-# But chutney defaults to running a bit more slowly, so it is more reliable.
+# Even the fastest chutney networks take 5-10 seconds for their first consensus,
+# and then 10 seconds after that for relays to bootstrap and upload descriptors,
+# and then 10 seconds after that for clients and onion services to bootstrap.
+# But chutney defaults to running a bit more slowly, so it is more reliable,
+# and we allow a bit more time, in case the machine is heavily loaded.
 export CHUTNEY_START_TIME=${CHUTNEY_START_TIME:-120}
 export CHUTNEY_BOOTSTRAP_TIME=${CHUTNEY_BOOTSTRAP_TIME:-60}
 export CHUTNEY_STOP_TIME=${CHUTNEY_STOP_TIME:-0}