OpenStack Grizzly keystoe remove_user command removing ALL users -
i have following code works great in folsom:
#remove user each role associated user user_roles = kc.users.list_roles(obj_id, currtenant) role in user_roles: if obj_id == user.id: kc.tenants.remove_user(currtenant, obj_id, role.id)
that same code remove users rather user id, obj_id tenant specified. else have issue in grizzly?
found answer, it's known issue grizzly code base. https://bugs.launchpad.net/keystone/+bug/1170649
the bug includes suggested fix.
Comments
Post a Comment