When multiple controllers are passed into Cgroup.delete() via a list, delete() was erroneously joining them without a comma separator. Add the comma separator.
Signed-off-by: Tom Hromatka <[email protected]> --- ftests/cgroup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftests/cgroup.py b/ftests/cgroup.py index dd9f0affe3a6..d3a3dfc25e4f 100644 --- a/ftests/cgroup.py +++ b/ftests/cgroup.py @@ -162,7 +162,7 @@ class Cgroup(object): cmd.append('-r') controllers_and_path = '{}:{}'.format( - ''.join(controller_list), cgname) + ','.join(controller_list), cgname) cmd.append('-g') cmd.append(controllers_and_path) -- 2.31.1 _______________________________________________ Libcg-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/libcg-devel
