Change 'host' option from HostAddressOpt to StrOpt
HostAddressOpt is overly restrictive for this field -- it should actually just be a StrOpt. Co-Author: Gorka Eguileor <geguileo@redhat.com> Closes-Bug: #1941068 Change-Id: I7699433b283ba9aa1bd11da4f6ff4de071f1b51d
This commit is contained in:
parent
a2f0f57a06
commit
c995438ca2
@ -84,12 +84,12 @@ global_opts = [
|
||||
cfg.StrOpt('scheduler_manager',
|
||||
default='cinder.scheduler.manager.SchedulerManager',
|
||||
help='Full class name for the Manager for scheduler'),
|
||||
cfg.HostAddressOpt('host',
|
||||
sample_default='localhost',
|
||||
default=socket.gethostname(),
|
||||
help='Name of this node. This can be an opaque '
|
||||
'identifier. It is not necessarily a host name, '
|
||||
'FQDN, or IP address.'),
|
||||
cfg.StrOpt('host',
|
||||
sample_default='localhost',
|
||||
default=socket.gethostname(),
|
||||
help='Name of this node. This can be an opaque '
|
||||
'identifier. It is not necessarily a host name, '
|
||||
'FQDN, or IP address.'),
|
||||
# NOTE(vish): default to nova for compatibility with nova installs
|
||||
cfg.StrOpt('storage_availability_zone',
|
||||
default='nova',
|
||||
|
@ -0,0 +1,7 @@
|
||||
---
|
||||
fixes:
|
||||
- |
|
||||
`Bug #1941068 <https://bugs.launchpad.net/cinder/+bug/1941068>`_: Fixed
|
||||
type of the ``host`` configuration option. It was limited to valid FQDN
|
||||
values when we document that it isn't. This may result in the
|
||||
``cinder-manage db sync`` command failing.
|
Loading…
Reference in New Issue
Block a user