[Zodb-checkins] CVS: ZODB3/ZEO/zrpc - client.py:1.19.2.2
Jeremy Hylton
jeremy@zope.com
Mon, 9 Dec 2002 15:50:43 -0500
Update of /cvs-repository/ZODB3/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv16205/ZEO/zrpc
Modified Files:
Tag: ZODB3-3_1-branch
client.py
Log Message:
Add a log message when the CT continues after finding a fallback.
=== ZODB3/ZEO/zrpc/client.py 1.19.2.1 => 1.19.2.2 ===
--- ZODB3/ZEO/zrpc/client.py:1.19.2.1 Thu Oct 3 20:09:06 2002
+++ ZODB3/ZEO/zrpc/client.py Mon Dec 9 15:50:43 2002
@@ -289,6 +289,9 @@
if success > 0:
break
time.sleep(delay)
+ if self.mgr.is_connected():
+ log("CT: still trying to replace fallback connection",
+ level=zLOG.INFO)
delay = min(delay*2, self.tmax)
log("CT: exiting thread: %s" % self.getName())