[Zodb-checkins] CVS: ZODB3/ZEO - ServerStub.py:1.9.22.3
Jeremy Hylton
jeremy@zope.com
Tue, 17 Dec 2002 15:50:13 -0500
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv17414
Modified Files:
Tag: ZODB3-fast-restart-branch
ServerStub.py
Log Message:
getInvalidations() takes one argument
=== ZODB3/ZEO/ServerStub.py 1.9.22.2 => 1.9.22.3 ===
--- ZODB3/ZEO/ServerStub.py:1.9.22.2 Tue Dec 17 15:41:48 2002
+++ ZODB3/ZEO/ServerStub.py Tue Dec 17 15:50:13 2002
@@ -51,8 +51,8 @@
def lastTransaction(self):
return self.rpc.call('lastTransaction')
- def getInvalidations(self):
- return self.rpc.call('getInvalidations')
+ def getInvalidations(self, tid):
+ return self.rpc.call('getInvalidations', tid)
def zeoVerify(self, oid, s, sv):
self.rpc.callAsync('zeoVerify', oid, s, sv)