From 22f6305bee85c5708887390feb5152f970fa0bd9 Mon Sep 17 00:00:00 2001 From: Art Lukyanchyk <artiom.lukyanchyk@hs-hannover.de> Date: Mon, 27 Aug 2018 15:40:00 +0200 Subject: [PATCH] Adjust default patience threshold of the hypothetical user --- pikatasks/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pikatasks/settings.py b/pikatasks/settings.py index 68de782..b886f5c 100644 --- a/pikatasks/settings.py +++ b/pikatasks/settings.py @@ -30,7 +30,7 @@ SSL_VERSION = ssl.PROTOCOL_TLSv1_2 SSL_CERT_REQS = ssl.CERT_REQUIRED # stuff you might want to change sometimes: -RPC_TIMEOUT = timedelta(seconds=10) # affects client behaviour and message TTL +RPC_TIMEOUT = timedelta(seconds=25) # affects client behaviour and message TTL WORKER_GRACEFUL_STOP_TIMEOUT = timedelta(seconds=60) # stuff you probably don't want to touch: -- GitLab