Merge "Use oslo_config new type PortOpt for port options"

This commit is contained in:
Jenkins 2015-10-27 02:54:43 +00:00 committed by Gerrit Code Review
commit 8370cc56f5

View File

@ -36,7 +36,7 @@ launch_opt = cfg.ListOpt(
api_opts = [
cfg.StrOpt('host', default='0.0.0.0', help='Mistral API server host'),
cfg.IntOpt('port', default=8989, help='Mistral API server port'),
cfg.PortOpt('port', default=8989, help='Mistral API server port'),
cfg.BoolOpt('allow_action_execution_deletion', default=False,
help='Enables the ability to delete action_execution which '
'has no relationship with workflows.'),