[Zodb-checkins]
SVN: ZODB/branches/blob-merge-branch/src/ZODB/Blobs/BlobStorage.py
Delegate to the proper method in tpc_abort.
Chris McDonough
chrism at plope.com
Sat Sep 24 14:28:52 EDT 2005
Log message for revision 38602:
Delegate to the proper method in tpc_abort.
Changed:
U ZODB/branches/blob-merge-branch/src/ZODB/Blobs/BlobStorage.py
-=-
Modified: ZODB/branches/blob-merge-branch/src/ZODB/Blobs/BlobStorage.py
===================================================================
--- ZODB/branches/blob-merge-branch/src/ZODB/Blobs/BlobStorage.py 2005-09-24 18:27:31 UTC (rev 38601)
+++ ZODB/branches/blob-merge-branch/src/ZODB/Blobs/BlobStorage.py 2005-09-24 18:28:51 UTC (rev 38602)
@@ -100,7 +100,7 @@
providing an _abort method because methods found on the proxied object
aren't rebound to the proxy """
# XXX this is never called during our tests.
- getProxiedObject(self).abort(*arg, **kw)
+ getProxiedObject(self).tpc_abort(*arg, **kw)
while self.dirty_oids:
oid, serial = self.dirty_oids.pop()
clean = self._getCleanFilename(oid, serial)
More information about the Zodb-checkins
mailing list