diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-08-25 00:09:43 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-08-25 00:09:43 +0000 |
| commit | ac5bff1f088fffa98fde44470adf03e7f228a3ed (patch) | |
| tree | d135f90cf9bb54d0d1c1c8c625182ab3fc8b4ed9 | |
| parent | 650c3e940fde2da54c960c9f0a33140c5b889fad (diff) | |
| parent | 652d602ebd0b54731f6ce6b2c85ed403a4c5a0cb (diff) | |
| download | nova-ac5bff1f088fffa98fde44470adf03e7f228a3ed.tar.gz nova-ac5bff1f088fffa98fde44470adf03e7f228a3ed.tar.xz nova-ac5bff1f088fffa98fde44470adf03e7f228a3ed.zip | |
Merge "Rename class_name to project_id"
| -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 b80e88705..d4be854b3 100644 --- a/nova/db/api.py +++ b/nova/db/api.py @@ -981,7 +981,7 @@ def quota_usage_get_all_by_project(context, project_id): return IMPL.quota_usage_get_all_by_project(context, project_id) -def quota_usage_update(context, class_name, resource, in_use, reserved, +def quota_usage_update(context, project_id, resource, in_use, reserved, until_refresh): """Update a quota usage or raise if it does not exist.""" return IMPL.quota_usage_update(context, project_id, resource, |
