be5385c538
If there is any request from client with any invalid request parameters, invalid signature for example, keystone should capture that and raise the exception. It was `NotImplementedError`, `TypeError` thrown out and presented directly to end user, and nothing helpful message is given. This patch fix that and show as many exception message that is helpful for diagnosis as possible. Change-Id: I112d0cd0c8a460c7b4d8d0e1c0b9c742aab9fde7 Closes-Bug: #1616424
9 lines
373 B
YAML
9 lines
373 B
YAML
---
|
|
fixes:
|
|
- >
|
|
[`bug 1616424 <https://bugs.launchpad.net/keystone/+bug/1616424>`_]
|
|
Python build-in exception was raised if create request token or access token
|
|
request from client with invalid request parameters, invalid signature for example.
|
|
The implementation is hardened by showing proper exception and displaying the
|
|
failure reasons if existent.
|