Commit 5b810fa0 authored by Jim Fulton's avatar Jim Fulton

I'd forgotten about removing the version argument in MVCCAdapterInstance

Which led to me to call site that needed it to be removed.
parent 60fe92fe
...@@ -48,7 +48,7 @@ class ExportImport: ...@@ -48,7 +48,7 @@ class ExportImport:
continue continue
done_oids[oid] = True done_oids[oid] = True
try: try:
p, serial = load(oid, '') p, serial = load(oid)
except: except:
logger.debug("broken reference for oid %s", repr(oid), logger.debug("broken reference for oid %s", repr(oid),
exc_info=True) exc_info=True)
......
...@@ -139,7 +139,7 @@ class MVCCAdapterInstance(Base): ...@@ -139,7 +139,7 @@ class MVCCAdapterInstance(Base):
self._invalidations.clear() self._invalidations.clear()
return result return result
def load(self, oid, version=''): def load(self, oid):
assert self._start is not None assert self._start is not None
r = self._storage.loadBefore(oid, self._start) r = self._storage.loadBefore(oid, self._start)
if r is None: if r is None:
......
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