Merge "Enable mutable config in sahara"

This commit is contained in:
Zuul 2018-07-26 04:22:14 +00:00 committed by Gerrit Code Review
commit 09b858b8b1
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
---
features:
- |
Operators can now update the running configuration of Sahara processes by
sending the parent process a "HUP" signal.
Note: The configuration option must support mutation.

View File

@ -155,7 +155,7 @@ def _get_ops_driver(driver_name):
def get_process_launcher():
return oslo_service.ProcessLauncher(CONF)
return oslo_service.ProcessLauncher(CONF, restart_method='mutate')
def launch_api_service(launcher, service):