From 580ba220b4b3d1beb3abcc3acb8e47e32ca0ccb9 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Tue, 14 Dec 2021 13:59:29 +0100 Subject: [PATCH] qa: increase HTTP timeout for bitcoind requests Make it huge so we can generate loads of blocks on CI without any issue --- tests/test_framework/authproxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_framework/authproxy.py b/tests/test_framework/authproxy.py index f454d017..50e181cd 100644 --- a/tests/test_framework/authproxy.py +++ b/tests/test_framework/authproxy.py @@ -47,7 +47,7 @@ import time import urllib.parse -HTTP_TIMEOUT = 30 +HTTP_TIMEOUT = 300 USER_AGENT = "AuthServiceProxy/0.1" log = logging.getLogger("BitcoinRPC")