]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Merge "Add help option to Config Settings"
authorJenkins <jenkins@review.openstack.org>
Wed, 7 Aug 2013 13:00:32 +0000 (13:00 +0000)
committerGerrit Code Review <review@openstack.org>
Wed, 7 Aug 2013 13:00:32 +0000 (13:00 +0000)
1  2 
etc/heat/heat.conf.sample
heat/common/config.py
heat/common/wsgi.py

Simple merge
Simple merge
index 602a19503082a2d472ca5d03d80ea1005038f31a,26d20685a3d18920a7ef10d8fd712d98bbb08dd2..6d047451624a578410525c8ae5b1fd0d4ae0474c
@@@ -50,9 -49,16 +50,12 @@@ from heat.openstack.common import impor
  
  URL_LENGTH_LIMIT = 50000
  
 -# TODO(shadower) remove this once eventlet 0.9.17 is in distros Heat
 -# supports (notably Fedora 17 and Ubuntu 12.04 and newer)
 -eventlet.wsgi.MAX_REQUEST_LINE = URL_LENGTH_LIMIT
 -
  bind_opts = [
-     cfg.StrOpt('bind_host', default='0.0.0.0'),
-     cfg.IntOpt('bind_port'),
+     cfg.StrOpt('bind_host', default='0.0.0.0',
+                help=_('Address to bind the server.  Useful when '
+                       'selecting a particular network interface.')),
+     cfg.IntOpt('bind_port',
+                help=_('The port on which the server will listen.'))
  ]
  
  cfg.CONF.register_opts(bind_opts)