Skip to content

Commit

Permalink
increase timeout in functional to check whether debug mode fauntional…
Browse files Browse the repository at this point in the history
… test failure can be resolved
  • Loading branch information
Naviabheeman committed Dec 3, 2024
1 parent 71e4e16 commit 5cc302c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/functional/test_framework/test_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(self):
self.nodes = []
self.network_thread = None
self.mocktime = 0
self.rpc_timewait = 60 # Wait for up to 60 seconds for the RPC server to respond
self.rpc_timewait = 90 # Wait for up to 60 seconds for the RPC server to respond
self.supports_cli = False
self.bind_to_localhost_only = True
self.signblockpubkey = "025700236c2890233592fcef262f4520d22af9160e3d9705855140eb2aa06c35d3"
Expand Down
2 changes: 1 addition & 1 deletion test/functional/test_framework/test_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# For Python 3.4 compatibility
JSONDecodeError = getattr(json, "JSONDecodeError", ValueError)

BITCOIND_PROC_WAIT_TIMEOUT = 60
BITCOIND_PROC_WAIT_TIMEOUT = 90

class FailedToStartError(Exception):
"""Raised when a node fails to start correctly."""
Expand Down

0 comments on commit 5cc302c

Please sign in to comment.