[Zodb-checkins] CVS: Packages/ZEO - StorageServer.py:1.22.2.1
Jim Fulton
jim@digicool.com
Mon, 2 Jul 2001 18:13:58 -0400 (EDT)
Update of /cvs-repository/Packages/ZEO
In directory korak.digicool.com:/tmp/cvs-serv9909
Modified Files:
Tag: ZEO-0_5-branch
StorageServer.py
Log Message:
Fixed a bug in building undo invalidation info that caused client
storages to raise an exception that caused connections to be reset
and that, for some of reason, caused undo's to not propigate to
the clients.
--- Updated File StorageServer.py in package Packages/ZEO --
--- StorageServer.py 2001/03/27 23:41:51 1.22
+++ StorageServer.py 2001/07/02 22:13:57 1.22.2.1
@@ -455,7 +455,7 @@
oids=self.__storage.undo(transaction_id)
if oids:
self.__server.invalidate(
- self, self.__storage_id, map(lambda oid: (oid,None,''), oids)
+ self, self.__storage_id, map(lambda oid: (oid,None), oids)
)
return oids
return ()