SVN: ZODB/branches/jim-zrpc/src/ZEO/StorageServer.py queue info and serialnos so they don't slow tpc_finish
Jim Fulton <[email protected]>
| Newsgroups | gmane.comp.python.zope.zodb.cvs |
|---|---|
| Message-ID | <20100127224443.EA19B9417C__16525.393681559$1264632293$gmane$org@cvs.zope.org> |
Log message for revision 108583:
queue info and serialnos so they don't slow tpc_finish
Changed:
U ZODB/branches/jim-zrpc/src/ZEO/StorageServer.py
-=-
Modified: ZODB/branches/jim-zrpc/src/ZEO/StorageServer.py
===================================================================
--- ZODB/branches/jim-zrpc/src/ZEO/StorageServer.py 2010-01-27 20:41:54 UTC (rev 108582)
+++ ZODB/branches/jim-zrpc/src/ZEO/StorageServer.py 2010-01-27 22:44:38 UTC (rev 108583)
@@ -1340,10 +1340,10 @@
self.rpc.callAsyncNoPoll('invalidateTransaction', tid, args)
def serialnos(self, arg):
- self.rpc.callAsync('serialnos', arg)
+ self.rpc.callAsyncNoPoll('serialnos', arg)
def info(self, arg):
- self.rpc.callAsync('info', arg)
+ self.rpc.callAsyncNoPoll('info', arg)
def storeBlob(self, oid, serial, blobfilename):