master/worker: increase timeouts. Windows VMs can be really slow.

This commit is contained in:
Sebastien Bourdeauducq 2016-02-16 09:44:50 +01:00
parent f0e25991fe
commit 6196aaf2f5
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ def log_worker_exception():
class Worker:
def __init__(self, handlers=dict(), send_timeout=1.0):
def __init__(self, handlers=dict(), send_timeout=2.0):
self.handlers = handlers
self.send_timeout = send_timeout
@ -94,7 +94,7 @@ class Worker:
finally:
self.io_lock.release()
async def close(self, term_timeout=1.0):
async def close(self, term_timeout=2.0):
"""Interrupts any I/O with the worker process and terminates the
worker process.