[Zodb-checkins] CVS: Packages/ZEO - forker.py:1.5

jeremy@digicool.com jeremy@digicool.com
Wed, 9 May 2001 15:06:05 -0400 (EDT)


Update of /cvs-repository/Packages/ZEO/tests
In directory korak:/tmp/cvs-serv30029

Modified Files:
	forker.py 
Log Message:
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.)



--- Updated File forker.py in package Packages/ZEO --
--- forker.py	2001/05/09 16:38:38	1.4
+++ forker.py	2001/05/09 19:06:05	1.5
@@ -85,6 +85,7 @@
     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