Change allow-cluster-ops default from False to True

Change-Id: I3ea356293e15deed671b329e3a2bdda49fb67c28
Fixes: bug #1180151
This commit is contained in:
Matthew Farrellee 2013-05-14 20:53:03 -04:00
parent bb4086b3af
commit c73b82916f
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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
# #

View File

@ -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')