From d25a0f1ce29d82efd02d1e845f23caa09a2dac93 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Tue, 26 Jan 2021 12:40:39 -0500 Subject: [PATCH] Increase timeout, just to be on the safe side. --- integration/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/util.py b/integration/util.py index 444c8b05e..256fd68c1 100644 --- a/integration/util.py +++ b/integration/util.py @@ -30,7 +30,7 @@ from allmydata import client import pytest_twisted -def block_with_timeout(deferred, reactor, timeout=10): +def block_with_timeout(deferred, reactor, timeout=120): """Block until Deferred has result, but timeout instead of waiting forever.""" deferred.addTimeout(timeout, reactor) return pytest_twisted.blockon(deferred)