summaryrefslogtreecommitdiff
path: root/cinderclient/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'cinderclient/base.py')
-rw-r--r--cinderclient/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cinderclient/base.py b/cinderclient/base.py
index 613a066..d30a08e 100644
--- a/cinderclient/base.py
+++ b/cinderclient/base.py
@@ -328,7 +328,7 @@ class Manager(common_base.HookableMixin):
def _update(self, url, body, response_key=None, **kwargs):
self.run_hooks('modify_body_for_update', body, **kwargs)
- resp, body = self.api.client.put(url, body=body)
+ resp, body = self.api.client.put(url, body=body, **kwargs)
if response_key:
return self.resource_class(self, body[response_key], loaded=True,
resp=resp)