From cd9aa267b4cda105f03141efc3ba58924becfa03 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Tue, 19 Jan 2021 11:35:08 +0100 Subject: [PATCH] pyln: Adjust maximum load allowed by the throttler --- contrib/pyln-testing/pyln/testing/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pyln-testing/pyln/testing/utils.py b/contrib/pyln-testing/pyln/testing/utils.py index b59b2ee84..86c52b590 100644 --- a/contrib/pyln-testing/pyln/testing/utils.py +++ b/contrib/pyln-testing/pyln/testing/utils.py @@ -1120,7 +1120,7 @@ class Throttler(object): tests, which could cause more timeouts. """ - def __init__(self, directory: str, target: float = 75): + def __init__(self, directory: str, target: float = 90): """If specified we try to stick to a load of target (in percent). """ self.target = target