From: Kevin Benton Date: Tue, 15 Sep 2015 17:24:19 +0000 (-0700) Subject: Remove plural param to QUOTAS.count X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=2dfa49db138d3e7e84a7fff03cb08fe34729daeb;p=openstack-build%2Fneutron-build.git Remove plural param to QUOTAS.count This parameter is no longer in the signature of the count function. Change-Id: I686f3e3ed1095fdb48dd0515b58b159594f64f9e --- diff --git a/neutron/pecan_wsgi/hooks/quota_enforcement.py b/neutron/pecan_wsgi/hooks/quota_enforcement.py index 1a9240329..a45e5cccd 100644 --- a/neutron/pecan_wsgi/hooks/quota_enforcement.py +++ b/neutron/pecan_wsgi/hooks/quota_enforcement.py @@ -14,7 +14,6 @@ # under the License. from neutron.common import exceptions -from neutron.pecan_wsgi.hooks import attribute_population from neutron import quota from oslo_log import log as logging @@ -38,7 +37,6 @@ class QuotaEnforcementHook(hooks.PecanHook): try: count = quota.QUOTAS.count(state.request.context, rtype, state.request.plugin, - attribute_population._plural(rtype), tenant_id) delta = deltas.get(tenant_id, 0) + 1 kwargs = {rtype: count + delta}