From: Ricardo Dias Date: Tue, 6 Feb 2018 12:42:44 +0000 (+0000) Subject: mgr/dashboard_v2: clean rados connection on shutdown X-Git-Tag: wip-pdonnell-testing-20180317.202121~127^2~86 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=1dd62fdf4e01721471adaef17237ee89d707a130;p=ceph-ci.git mgr/dashboard_v2: clean rados connection on shutdown Signed-off-by: Ricardo Dias --- diff --git a/src/pybind/mgr/dashboard_v2/module.py b/src/pybind/mgr/dashboard_v2/module.py index 6c48e37cb65..a9034bd6094 100644 --- a/src/pybind/mgr/dashboard_v2/module.py +++ b/src/pybind/mgr/dashboard_v2/module.py @@ -129,6 +129,7 @@ class Module(MgrModule): logger.info('Engine done') def shutdown(self): + super(Module, self).shutdown() logger.info('Stopping server...') NotificationQueue.stop() cherrypy.engine.exit()