From: Dan Mick Date: Wed, 20 Jun 2018 04:39:57 +0000 (-0700) Subject: mgr/mgr_module.py: add 'delete a key' doc comment for set_store X-Git-Tag: v14.0.1~1054^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9d225844ab8eb1044cf8a7315312e503ca02e10c;p=ceph.git mgr/mgr_module.py: add 'delete a key' doc comment for set_store Signed-off-by: Dan Mick --- diff --git a/src/pybind/mgr/mgr_module.py b/src/pybind/mgr/mgr_module.py index 1db2e71a425e..1064652cfc5d 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)