From a955b8184fcde1f88fa7abb452bb3728dfaf0548 Mon Sep 17 00:00:00 2001 From: proclama2022 <132828300+proclama2022@users.noreply.github.com> Date: Tue, 19 Mar 2024 11:44:54 +0100 Subject: [PATCH] Timeout error correction Adjusted the timeout setting from 10 to 20 seconds to accommodate calls that were failing due to timeout error. This change should help ensure more reliable execution of these calls. --- nordigen/nordigen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nordigen/nordigen.py b/nordigen/nordigen.py index ec94c5a..d037a9e 100644 --- a/nordigen/nordigen.py +++ b/nordigen/nordigen.py @@ -31,7 +31,7 @@ def __init__( self, secret_key: str, secret_id: str, - timeout: int = 10, + timeout: int = 20, base_url: str = "https://bankaccountdata.gocardless.com/api/v2" ) -> None: self.secret_key = secret_key