Merge "Fix default value of "ignore_req_list" config option"

This commit is contained in:
Jenkins 2016-12-09 18:56:32 +00:00 committed by Gerrit Code Review
commit 538fd4eecc
3 changed files with 6 additions and 1 deletions

View File

@ -663,7 +663,7 @@
# be done on any GET or POST requests if this is set to
# "GET,POST". It is used only when API audit is enabled.
# (string value)
#ignore_req_list = <None>
#ignore_req_list =
[cimc]

View File

@ -26,6 +26,7 @@ opts = [
'Used only when API audit is enabled.')),
cfg.StrOpt('ignore_req_list',
default='',
help=_('Comma separated list of Ironic REST API HTTP methods '
'to be ignored during audit logging. For example: '
'auditing will not be done on any GET or POST '

View File

@ -0,0 +1,4 @@
---
fixes:
- Fixes the issue that API service does not start if audit is enabled with
default value of "ignore_req_list" config option.