Merge "Add a new configuration parameter rpc_response_max_timeout"

This commit is contained in:
Zuul 2019-01-18 18:19:53 +00:00 committed by Gerrit Code Review
commit 362326cf3b
2 changed files with 8 additions and 0 deletions

View File

@ -39,6 +39,9 @@ service_opts = [
help=_('Range of seconds to randomly delay when starting the '
'periodic task scheduler to reduce stampeding. '
'(Disable by setting to 0)')),
cfg.IntOpt('rpc_response_max_timeout',
default=600,
help=_('Maximum seconds to wait for a response from a call.')),
]

View File

@ -0,0 +1,5 @@
---
features:
- Add config option ``rpc_response_max_timeout``
to configure the maximum time waiting for an
RPC response.