Retrieve localized configuration for this ceph-mgr instance
(self, key: str, default: OptionValue = None)
| 2176 | return setter(_get_localized_key(self.get_mgr_id(), key), val) |
| 2177 | |
| 2178 | def get_localized_module_option(self, key: str, default: OptionValue = None) -> OptionValue: |
| 2179 | """ |
| 2180 | Retrieve localized configuration for this ceph-mgr instance |
| 2181 | """ |
| 2182 | self._validate_module_option(key) |
| 2183 | return self._get_module_option(key, default, self.get_mgr_id()) |
| 2184 | |
| 2185 | def _set_module_option(self, key: str, val: Any) -> None: |
| 2186 | return self._ceph_set_module_option(self.module_name, key, |
no test coverage detected