diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-07-26 18:36:33 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-07-26 18:36:33 +0000 |
| commit | 7b8cb82e09cc53a7dc9053e6eb1d37a31ddb2cda (patch) | |
| tree | b6cf237b6aa030a4905af477da78ae2820654397 | |
| parent | ee4e63dbf45a46fc35f1a6681b49ee2aba9b396b (diff) | |
| parent | b55d533393ec9cbf15d4161e4aef1c64f1ba8c58 (diff) | |
| download | nova-7b8cb82e09cc53a7dc9053e6eb1d37a31ddb2cda.tar.gz nova-7b8cb82e09cc53a7dc9053e6eb1d37a31ddb2cda.tar.xz nova-7b8cb82e09cc53a7dc9053e6eb1d37a31ddb2cda.zip | |
Merge "Call correct implementation for quota_destroy_all_by_project"
| -rw-r--r-- | nova/db/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/db/api.py b/nova/db/api.py index 231df02f2..4e7f61208 100644 --- a/nova/db/api.py +++ b/nova/db/api.py @@ -1047,7 +1047,7 @@ def reservation_rollback(context, reservations): def quota_destroy_all_by_project(context, project_id): """Destroy all quotas associated with a given project.""" - return IMPL.quota_get_all_by_project(context, project_id) + return IMPL.quota_destroy_all_by_project(context, project_id) def reservation_expire(context): |
