Merge "Disable per-user rate limiting by default"

This commit is contained in:
Jenkins
2013-07-31 12:04:52 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -313,7 +313,7 @@
# whether to use per-user rate limiting for the api. (boolean
# value)
#api_rate_limit=true
#api_rate_limit=false
# The strategy to use for auth: noauth or keystone. (string
# value)

View File

@@ -31,7 +31,7 @@ from nova import wsgi
auth_opts = [
cfg.BoolOpt('api_rate_limit',
default=True,
default=False,
help='whether to use per-user rate limiting for the api.'),
cfg.StrOpt('auth_strategy',
default='noauth',