summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-05-31 13:38:30 +0000
committerGerrit Code Review <review@openstack.org>2016-05-31 13:38:30 +0000
commit6a204b000ac4de5d3f939ab9d0605b94aa4cb250 (patch)
tree0b741b64dbaf70cc21f4cbf0f88730db69e05f83 /openstackclient
parentca58ab9d0971200a34c84a96d80a1c12a9314096 (diff)
parent5f950788ffe528f509fe88c70179ec5e732bff82 (diff)
downloadpython-openstackclient-6a204b000ac4de5d3f939ab9d0605b94aa4cb250.tar.gz
Merge "Do not require an scope when setting a password"
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/identity/v3/user.py2
-rw-r--r--openstackclient/releasenotes/notes/bug-1543222-6f8579344ff5c958.yaml6
2 files changed, 8 insertions, 0 deletions
diff --git a/openstackclient/identity/v3/user.py b/openstackclient/identity/v3/user.py
index 9a7ced92..8bc4183b 100644
--- a/openstackclient/identity/v3/user.py
+++ b/openstackclient/identity/v3/user.py
@@ -369,6 +369,8 @@ class SetUser(command.Command):
class SetPasswordUser(command.Command):
"""Change current user password"""
+ required_scope = False
+
def get_parser(self, prog_name):
parser = super(SetPasswordUser, self).get_parser(prog_name)
parser.add_argument(
diff --git a/openstackclient/releasenotes/notes/bug-1543222-6f8579344ff5c958.yaml b/openstackclient/releasenotes/notes/bug-1543222-6f8579344ff5c958.yaml
new file mode 100644
index 00000000..c783d013
--- /dev/null
+++ b/openstackclient/releasenotes/notes/bug-1543222-6f8579344ff5c958.yaml
@@ -0,0 +1,6 @@
+---
+fixes:
+ - Keystone V3 `user password set` is a self-service operation. It should
+ not required a scoped token as it is not considered a `scoped operation`.
+ [Bug `1543222 <https://bugs.launchpad.net/bugs/1543222>`_]
+