]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Remove duplicate deprecation messages for quota_items option
authorSridhar Venkat <svenkat@us.ibm.com>
Thu, 8 Oct 2015 21:27:39 +0000 (17:27 -0400)
committerIhar Hrachyshka <ihrachys@redhat.com>
Mon, 23 Nov 2015 14:08:30 +0000 (15:08 +0100)
The option is already marked for deprecation using oslo.config
mechanism, so there is no need to output more warnings here.

Change-Id: I5db439a0b87c49a52f3f5c063d0fd90819f3e932
Closes-Bug: #1504312

neutron/quota/__init__.py

index df54d9f9128b432f959935c18f2809ff449a618f..22b7d07f874e1ed24bd0080ed9cc9872fefbd40f 100644 (file)
@@ -317,11 +317,6 @@ def register_resources_from_config():
     # This operation is now deprecated. All the neutron core and extended
     # resource for which  quota limits are enforced explicitly register
     # themselves with the quota engine.
-    versionutils.report_deprecated_feature(
-        LOG, _LW("Registering resources to apply quota limits to using the "
-                 "quota_items option is deprecated as of Liberty."
-                 "Resource REST controllers should take care of registering "
-                 "resources with the quota engine."))
     for resource_item in (set(cfg.CONF.QUOTAS.quota_items) -
                           set(default_quota_items)):
         resource_registry.register_resource_by_name(resource_item)