add prefix for resource manager group
This commit is contained in:
parent
a9f6491d8e
commit
6c3cc78c65
@ -393,7 +393,11 @@ int ObCgroupCtrl::get_group_path(
|
||||
}
|
||||
}
|
||||
|
||||
snprintf(group_name_path, path_bufsize, "%s", group_name);
|
||||
if (OB_SUCCESS == tmp_ret && is_resource_manager_group(group_id)) {
|
||||
snprintf(group_name_path, path_bufsize, "OBRM_%s", group_name); // resource manager
|
||||
} else {
|
||||
snprintf(group_name_path, path_bufsize, "%s", group_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (OB_SUCC(ret)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user