summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-02 20:41:14 +0000
committerGerrit Code Review <review@openstack.org>2013-06-02 20:41:14 +0000
commitf166ac3768e6b446d69f483d34348c0d070ca4c4 (patch)
tree82a484d418683ec5843a595deadff0af148c5838
parent5a510518d9e3097730466cfbf4ff25495c4a0302 (diff)
parent6e49a627198f709a8f3a96cea82900c8611fbd8e (diff)
downloadnova-f166ac3768e6b446d69f483d34348c0d070ca4c4.tar.gz
nova-f166ac3768e6b446d69f483d34348c0d070ca4c4.tar.xz
nova-f166ac3768e6b446d69f483d34348c0d070ca4c4.zip
Merge "Cosmetic fix to parameter name in DB API"
-rw-r--r--nova/db/api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/db/api.py b/nova/db/api.py
index f796b7f5a..78e2eb7a4 100644
--- a/nova/db/api.py
+++ b/nova/db/api.py
@@ -112,9 +112,9 @@ def not_equal(*values):
###################
-def service_destroy(context, instance_id):
+def service_destroy(context, service_id):
"""Destroy the service or raise if it does not exist."""
- return IMPL.service_destroy(context, instance_id)
+ return IMPL.service_destroy(context, service_id)
def service_get(context, service_id):