Commit 2b3f3ba5 authored by Jeremy Hylton's avatar Jeremy Hylton

Set the min_disconnect_poll variable to 0.5. (This is actually

misnamed, because it's also the min_connect_poll and it makes the
tests run much faster by waiting for a shorter period of time between
connect attempts.)
parent 12636b02
......@@ -85,6 +85,7 @@ def start_zeo(storage, cache=None, cleanup=None, domain="AF_INET",
pid, exit = start_zeo_server(storage, addr)
s = ZEO.ClientStorage.ClientStorage(addr, storage_id,
debug=1, client=cache,
cache_size=cache_size)
cache_size=cache_size,
min_disconnect_poll=0.5)
return s, exit, pid
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment