mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-20 15:44:21 +01:00
Bring back the time-out on the start-up of bitcoind, but make it 60 seconds instead of the original 10 seconds. This is much larger than the normal start-up time of bitcoind (so we should never hit the time-out), but still lets a test terminate in a reasonable time in the unlikely case that bitcoind hangs.
This commit is contained in:
committed by
Christian Decker
parent
896f7ef37d
commit
6112df3a90
@@ -226,7 +226,7 @@ class BitcoinD(TailableProc):
|
|||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
TailableProc.start(self)
|
TailableProc.start(self)
|
||||||
self.wait_for_log("Done loading", timeout=None)
|
self.wait_for_log("Done loading", timeout=60)
|
||||||
|
|
||||||
logging.info("BitcoinD started")
|
logging.info("BitcoinD started")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user