[Zodb-checkins] CVS: ZODB3/ZEO - ClientStorage.py:1.73.2.23
Tim Peters
tim.one at comcast.net
Fri Jun 6 14:58:11 EDT 2003
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv17628/zeo
Modified Files:
Tag: ZODB3-3_1-branch
ClientStorage.py
Log Message:
invalidateTrans(): We have no idea why we're getting into this code
while running a stress test, but so long as we are, stop it from dying
for bogus reasons (it's quite true that self doesn't have an attribute
named "self" <wink>).
=== ZODB3/ZEO/ClientStorage.py 1.73.2.22 => 1.73.2.23 ===
--- ZODB3/ZEO/ClientStorage.py:1.73.2.22 Fri Jun 6 11:56:03 2003
+++ ZODB3/ZEO/ClientStorage.py Fri Jun 6 13:58:10 2003
@@ -954,7 +954,7 @@
log2(BLATHER,
"Transactional invalidation during cache verification")
for t in args:
- self.self._pickler.dump(t)
+ self._pickler.dump(t)
return
self._process_invalidations(args)
More information about the Zodb-checkins
mailing list