Change allow-cluster-ops default from False to True
Change-Id: I3ea356293e15deed671b329e3a2bdda49fb67c28 Fixes: bug #1180151
This commit is contained in:
parent
bb4086b3af
commit
c73b82916f
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# REST API config
|
# REST API config
|
||||||
#port=8080
|
#port=8080
|
||||||
#allow_cluster_ops=false
|
#allow_cluster_ops=true
|
||||||
|
|
||||||
# Address and credentials that will be used to check auth tokens
|
# Address and credentials that will be used to check auth tokens
|
||||||
#os_auth_host=openstack
|
#os_auth_host=openstack
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
# without that option the application operates in dry run mode
|
# without that option the application operates in dry run mode
|
||||||
# and does not send any requests to the OpenStack cluster
|
# and does not send any requests to the OpenStack cluster
|
||||||
# (boolean value)
|
# (boolean value)
|
||||||
#allow_cluster_ops=false
|
#allow_cluster_ops=true
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -20,7 +20,7 @@ cli_opts = [
|
|||||||
help='set host'),
|
help='set host'),
|
||||||
cfg.IntOpt('port', default=8080,
|
cfg.IntOpt('port', default=8080,
|
||||||
help='set port'),
|
help='set port'),
|
||||||
cfg.BoolOpt('allow-cluster-ops', default=False,
|
cfg.BoolOpt('allow-cluster-ops', default=True,
|
||||||
help='without that option'
|
help='without that option'
|
||||||
' the application operates in dry run mode and does not '
|
' the application operates in dry run mode and does not '
|
||||||
' send any requests to the OpenStack cluster')
|
' send any requests to the OpenStack cluster')
|
||||||
|
Loading…
Reference in New Issue
Block a user