TypeError in openstack server event list
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| python-openstackclient |
New
|
Undecided
|
Unassigned | ||
Bug Description
The server event list command crashes with a TypeError because the client passes the changes_since keyword to a Proxy method that does not accept it. This is a regression introduced in python-
First broken: 6.3.0 Current: 8.3.0 Last working: 6.2.1 SDK version: 4.8.0
In version 6.2.1, the client called the SDK manager directly: compute_
In 6.3.0 and later, it was changed to call the Proxy method: compute_
The openstacksdk Proxy method signature is currently: def server_
It is missing **query or **kwargs to handle the dictionary being passed by the CLI.
Example command: openstack server event list --changes-since 2026-01-15 <uuid>
Error Traceback: File "openstackclien
| description: | updated |
Fix in sdk: https:/ /review. opendev. org/c/openstack /openstacksdk/ +/973606