[Zodb-checkins] SVN: ZODB/trunk/src/ZEO/ServerStub.py We don't use the result of iterator_gc, so it should be a one-way method.
Jim Fulton
jim at zope.com
Tue Nov 18 20:45:02 EST 2008
Log message for revision 93117:
We don't use the result of iterator_gc, so it should be a one-way method.
Changed:
U ZODB/trunk/src/ZEO/ServerStub.py
-=-
Modified: ZODB/trunk/src/ZEO/ServerStub.py
===================================================================
--- ZODB/trunk/src/ZEO/ServerStub.py 2008-11-19 01:40:21 UTC (rev 93116)
+++ ZODB/trunk/src/ZEO/ServerStub.py 2008-11-19 01:45:01 UTC (rev 93117)
@@ -309,7 +309,7 @@
return self.rpc.call('iterator_record_next', iid)
def iterator_gc(self, iids):
- return self.rpc.call('iterator_gc', iids)
+ return self.rpc.callAsync('iterator_gc', iids)
class ExtensionMethodWrapper:
More information about the Zodb-checkins
mailing list