If modules want per-instance state, they can include
the mgr id in their portion of the key name.
Signed-off-by: Sage Weil <sage@redhat.com>
Mutex::Locker locker(lock);
global_handle = this;
- // namespace in config-key prefixed by "mgr/<id>/"
- config_prefix = std::string(g_conf->name.get_type_str()) + "/" +
- g_conf->name.get_id() + "/";
+ // namespace in config-key prefixed by "mgr/"
+ config_prefix = std::string(g_conf->name.get_type_str()) + "/";
// Set up global python interpreter
Py_SetProgramName(const_cast<char*>(PYTHON_EXECUTABLE));