# HG changeset patch # User Sylvain Thénault # Date 1276758634 -7200 # Node ID ec5dbbb6a5495997e402b3ea5f5c9470da10f8b6 # Parent 730d458ec1bfae23f60f49cd2445b1188656e629# Parent 1bdddb7460a9ff24443f074dd0016e94ff074f08 backport stable diff -r 730d458ec1bf -r ec5dbbb6a549 dbapi.py --- a/dbapi.py Wed Jun 16 14:51:17 2010 +0200 +++ b/dbapi.py Thu Jun 17 09:10:34 2010 +0200 @@ -532,8 +532,7 @@ raise ProgrammingError('Closed connection') return self._repo.get_schema() - def load_appobjects(self, cubes=_MARKER, subpath=None, expand=True, - force_reload=None): + def load_appobjects(self, cubes=_MARKER, subpath=None, expand=True): config = self.vreg.config if cubes is _MARKER: cubes = self._repo.get_cubes() @@ -555,7 +554,7 @@ cubes = reversed([config.cube_dir(p) for p in cubes]) vpath = config.build_vregistry_path(cubes, evobjpath=esubpath, tvobjpath=subpath) - self.vreg.register_objects(vpath, force_reload) + self.vreg.register_objects(vpath) if self._cnxtype == 'inmemory': # should reinit hooks manager as well hm, config = self._repo.hm, self._repo.config