From 2dfa49db138d3e7e84a7fff03cb08fe34729daeb Mon Sep 17 00:00:00 2001 From: Kevin Benton Date: Tue, 15 Sep 2015 10:24:19 -0700 Subject: [PATCH] Remove plural param to QUOTAS.count This parameter is no longer in the signature of the count function. Change-Id: I686f3e3ed1095fdb48dd0515b58b159594f64f9e --- neutron/pecan_wsgi/hooks/quota_enforcement.py | 2 -- 1 file changed, 2 deletions(-) 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} -- 2.45.2