[Zodb-checkins] CVS: ZODB3/ZEO - ClientStorage.py:1.106
Jeremy Hylton
jeremy at zope.com
Mon Jun 16 14:17:43 EDT 2003
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv18175
Modified Files:
ClientStorage.py
Log Message:
Minor optimization and normalization -- wait/waiting.
=== ZODB3/ZEO/ClientStorage.py 1.105 => 1.106 ===
--- ZODB3/ZEO/ClientStorage.py:1.105 Mon Jun 16 11:48:14 2003
+++ ZODB3/ZEO/ClientStorage.py Mon Jun 16 13:17:42 2003
@@ -288,7 +288,6 @@
self._oid = '\0\0\0\0\0\0\0\0'
# Decide whether to use non-temporary files
- client = client
self._cache = self.ClientCacheClass(storage, cache_size,
client=client, var=var)
@@ -321,7 +320,7 @@
self._ready.wait(30)
if self._ready.isSet():
break
- log2(INFO, "Wait for cache verification to finish")
+ log2(INFO, "Waiting for cache verification to finish")
else:
self._wait_sync()
@@ -331,7 +330,7 @@
while 1:
if self._ready.isSet():
break
- log2(INFO, "Wait for cache verification to finish")
+ log2(INFO, "Waiting for cache verification to finish")
if self._connection is None:
# If the connection was closed while we were
# waiting for it to become ready, start over.
More information about the Zodb-checkins
mailing list