From 1dd62fdf4e01721471adaef17237ee89d707a130 Mon Sep 17 00:00:00 2001 From: Ricardo Dias Date: Tue, 6 Feb 2018 12:42:44 +0000 Subject: [PATCH] mgr/dashboard_v2: clean rados connection on shutdown Signed-off-by: Ricardo Dias --- src/pybind/mgr/dashboard_v2/module.py | 1 + 1 file changed, 1 insertion(+) 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() -- 2.39.5