Commit 111916df authored by Chris McDonough's avatar Chris McDonough

Delegate to the proper method in tpc_abort.

parent 909ff427
...@@ -100,7 +100,7 @@ class BlobStorage(ProxyBase): ...@@ -100,7 +100,7 @@ class BlobStorage(ProxyBase):
providing an _abort method because methods found on the proxied object providing an _abort method because methods found on the proxied object
aren't rebound to the proxy """ aren't rebound to the proxy """
# XXX this is never called during our tests. # XXX this is never called during our tests.
getProxiedObject(self).abort(*arg, **kw) getProxiedObject(self).tpc_abort(*arg, **kw)
while self.dirty_oids: while self.dirty_oids:
oid, serial = self.dirty_oids.pop() oid, serial = self.dirty_oids.pop()
clean = self._getCleanFilename(oid, serial) clean = self._getCleanFilename(oid, serial)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment