Activity log for bug #2159619

Date Who What changed Old value New value Message
2026-07-06 10:02:32 Kacper Sulimowicz bug added bug
2026-07-06 10:03:52 Kacper Sulimowicz description There is an issue when setting the Unified Limits resource_limit value to 0. The problem is caused by the following condition: if parsed_args.resource_limit: kwargs["resource_limit"] = parsed_args.resource_limit Since 0 evaluates to False, the value is skipped and is not passed to update_limit(). The condition should check for None instead. There is an issue when setting the Unified Limits resource_limit value to 0. The problem is caused by the following condition: if parsed_args.resource_limit:     kwargs["resource_limit"] = parsed_args.resource_limit Since 0 evaluates to False, the value is skipped and is not passed to update_limit(). The condition should check for None instead. https://github.com/openstack/python-openstackclient/blob/master/openstackclient/identity/v3/limit.py
2026-07-07 08:40:18 Bartłomiej Daca bug added subscriber Bartłomiej Daca