From 4872cc5aa32611e44705aebf93145a92d5df776a Mon Sep 17 00:00:00 2001
From: Sage Weil <sage@redhat.com>
Date: Tue, 18 Dec 2018 14:19:06 -0600
Subject: [PATCH] pybind/mgr/mgr_module: set values as string

The C++ code expects a string, and stores everything as a string, so
just pass it in that way.

Signed-off-by: Sage Weil <sage@redhat.com>
---
 src/pybind/mgr/mgr_module.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/pybind/mgr/mgr_module.py b/src/pybind/mgr/mgr_module.py
index cec00ed8493..3fdd46d5021 100644
--- a/src/pybind/mgr/mgr_module.py
+++ b/src/pybind/mgr/mgr_module.py
@@ -746,7 +746,7 @@ class MgrModule(ceph_module.BaseMgrModule):
         return self._get_localized(key, default, self._get_module_option)
 
     def _set_module_option(self, key, val):
-        return self._ceph_set_module_option(key, val)
+        return self._ceph_set_module_option(key, str(val))
 
     def set_module_option(self, key, val):
         """