From 4c8a8357b0d0882912229a436f387182e30e0dcf 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 396059b1a..706c9e398 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