summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-04-22 15:23:54 +0000
committerGerrit Code Review <review@openstack.org>2015-04-22 15:23:54 +0000
commite1f92186656f91b0686264b0a8640ae13c9a0bcd (patch)
tree6a265014b60bd4c33f5e4d64dfde9acb386085ed
parentaa2b42028920b81acf83340c1bf0aced5f743f21 (diff)
parentcc9bd73479ab4f0d14ee66eccab6fa285b8836b9 (diff)
downloadcinder-e1f92186656f91b0686264b0a8640ae13c9a0bcd.tar.gz
Merge "Fix a wrong argument of create method" into stable/kilo
-rw-r--r--cinder/api/contrib/qos_specs_manage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cinder/api/contrib/qos_specs_manage.py b/cinder/api/contrib/qos_specs_manage.py
index cd136f5e7..434bacd9d 100644
--- a/cinder/api/contrib/qos_specs_manage.py
+++ b/cinder/api/contrib/qos_specs_manage.py
@@ -137,7 +137,7 @@ class QoSSpecsController(wsgi.Controller):
spec = qos_specs.get_qos_specs_by_name(context, name)
notifier_info = dict(name=name, specs=specs)
rpc.get_notifier('QoSSpecs').info(context,
- 'QoSSpecs.create',
+ 'qos_specs.create',
notifier_info)
except exception.InvalidInput as err:
notifier_err = dict(name=name, error_message=err)