[Zodb-checkins] CVS: ZEO/ZEO - StorageServer.py:1.32.6.3.2.6
Matthew T. Kromer
matt@zope.com
Thu, 23 May 2002 09:26:50 -0400
Update of /cvs-repository/ZEO/ZEO
In directory cvs.zope.org:/tmp/cvs-serv23911
Modified Files:
Tag: ZEO2-branch
StorageServer.py
Log Message:
Add modifiedInVersion -- was missing -- causes a crash of ZEO2 when someone
IMPORTs an object, since import calls modifiedInVersion. This just passes
the call thru to the underlying storage.
=== ZEO/ZEO/StorageServer.py 1.32.6.3.2.5 => 1.32.6.3.2.6 ===
self.client.endVerify()
+ def modifiedInVersion(self, oid):
+ return self.__storage.modifiedInVersion(oid)
+
def pack(self, t, wait=0):
t = threading.Thread(target=self._pack, args=(t, wait))
t.start()