You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the jersey connector the openstack client does not throw exceptions on errors from the backend when the operation has a void return type.
E.g: deleting a node will return ok from the nova client even if the backend operation fails with a 401 Unathorized. The problematic code is in the OpenStackClient:
The last line of the execute method will return null regardless of having a non-ok status code. If the return type is not void, the response.getEntity method will throw an exception in case of a non ok status code (at least this is true in the case of the jersey connector).
The text was updated successfully, but these errors were encountered:
When using the jersey connector the openstack client does not throw exceptions on errors from the backend when the operation has a void return type.
E.g: deleting a node will return ok from the nova client even if the backend operation fails with a 401 Unathorized. The problematic code is in the OpenStackClient:
The last line of the execute method will return null regardless of having a non-ok status code. If the return type is not void, the response.getEntity method will throw an exception in case of a non ok status code (at least this is true in the case of the jersey connector).
The text was updated successfully, but these errors were encountered: