[Zodb-checkins] SVN: ZODB/branches/jim-thready/src/ZEO/ClientStorage.py Fixed a small invalidation bug.
Jim Fulton
jim at zope.com
Fri Jan 22 17:30:46 EST 2010
Log message for revision 108399:
Fixed a small invalidation bug.
Changed:
U ZODB/branches/jim-thready/src/ZEO/ClientStorage.py
-=-
Modified: ZODB/branches/jim-thready/src/ZEO/ClientStorage.py
===================================================================
--- ZODB/branches/jim-thready/src/ZEO/ClientStorage.py 2010-01-22 22:30:43 UTC (rev 108398)
+++ ZODB/branches/jim-thready/src/ZEO/ClientStorage.py 2010-01-22 22:30:45 UTC (rev 108399)
@@ -1198,7 +1198,7 @@
if self._cache is None:
return
- for oid, tid in self._seriald.iteritems():
+ for oid, _ in self._seriald.iteritems():
self._cache.invalidate(oid, tid, False)
for oid, data in self._tbuf:
More information about the Zodb-checkins
mailing list