From bf3c3cdfd808aea5d8d4a7ca5c3b8af9b510088b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 3 Jul 2016 12:18:34 +0800 Subject: [PATCH] worker: increase send_timeout (Windows can be really slow) --- artiq/master/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/master/worker.py b/artiq/master/worker.py index 3ac6278ac..1ad84a8eb 100644 --- a/artiq/master/worker.py +++ b/artiq/master/worker.py @@ -41,7 +41,7 @@ def log_worker_exception(): class Worker: - def __init__(self, handlers=dict(), send_timeout=2.0): + def __init__(self, handlers=dict(), send_timeout=10.0): self.handlers = handlers self.send_timeout = send_timeout