| 236 | } |
| 237 | |
| 238 | bool is_module_active(const std::string &name) { |
| 239 | ceph_assert(active_modules); |
| 240 | return active_modules->module_exists(name); |
| 241 | } |
| 242 | |
| 243 | auto& get_active_module_finisher(const std::string &name) { |
| 244 | ceph_assert(active_modules); |
no test coverage detected