From 9d225844ab8eb1044cf8a7315312e503ca02e10c Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Tue, 19 Jun 2018 21:39:57 -0700 Subject: [PATCH] mgr/mgr_module.py: add 'delete a key' doc comment for set_store Signed-off-by: Dan Mick --- src/pybind/mgr/mgr_module.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pybind/mgr/mgr_module.py b/src/pybind/mgr/mgr_module.py index 1db2e71a425..1064652cfc5 100644 --- a/src/pybind/mgr/mgr_module.py +++ b/src/pybind/mgr/mgr_module.py @@ -646,7 +646,11 @@ class MgrModule(ceph_module.BaseMgrModule): def set_store(self, key, val): """ - Set a value in this module's persistent key value store + Set a value in this module's persistent key value store. + If val is None, remove key from store + + :param str key: + :param str val: """ self._ceph_set_store(key, val) -- 2.39.5