Merge "Remove api_rate_limit config option"

This commit is contained in:
Jenkins
2016-06-16 00:31:34 +00:00
committed by Gerrit Code Review
2 changed files with 6 additions and 22 deletions

View File

@@ -17,28 +17,6 @@ from oslo_config import cfg
auth_opts = [
cfg.BoolOpt("api_rate_limit",
default=False,
deprecated_for_removal=True,
deprecated_group="DEFAULT",
help="""
*DEPRECATED*
Determines whether rate limiting for the API is per-user. This option is only
used by v2 API. Rate limiting is removed from v2.1 API.
* Possible values:
True, False (default)
* Services that use this:
``nova-api``
* Related options:
None
"""),
cfg.StrOpt("auth_strategy",
default="keystone",
choices=("keystone", "noauth2"),

View File

@@ -0,0 +1,6 @@
---
other:
- The ``api_rate_limit`` configuration option has been removed. The option
was disabled by default back in the Havana release since it's effectively
broken for more than one API worker. It has been removed because the legacy
v2 API code that was using it has also been removed.