Browse Source

Merge pull request #1 from hbrunn/10.0-database_cleanup

[FIX] really uninstall modules and avoid a crash on cached data
pull/894/head
ecino 7 years ago
committed by GitHub
parent
commit
54141e5feb
  1. 3
      database_cleanup/models/purge_modules.py

3
database_cleanup/models/purge_modules.py

@ -53,11 +53,12 @@ class CleanupPurgeLineModule(models.TransientModel):
if not modules:
return True
self.logger.info('Purging modules %s', ', '.join(module_names))
modules.button_uninstall()
modules.button_immediate_uninstall()
# we need this commit because reloading the registry would roll back
# our changes
self.env.cr.commit() # pylint: disable=invalid-commit
RegistryManager.new(self.env.cr.dbname, update_module=True)
modules.refresh()
modules.unlink()
return objs.write({'purged': True})

Loading…
Cancel
Save