[Zodb-checkins] CVS: Packages/ZEO - StorageServer.py:1.28.2.1

Jim Fulton jim@digicool.com
Mon, 2 Jul 2001 18:27:48 -0400 (EDT)


Update of /cvs-repository/Packages/ZEO
In directory korak.digicool.com:/tmp/cvs-serv10691

Modified Files:
      Tag: zeo-1_0-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/05/14 19:08:19	1.28
+++ StorageServer.py	2001/07/02 22:27:47	1.28.2.1
@@ -469,7 +469,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 ()