diff --git a/cinder/common/config.py b/cinder/common/config.py index 8f2fc414ca1..4108a4ff405 100644 --- a/cinder/common/config.py +++ b/cinder/common/config.py @@ -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', diff --git a/releasenotes/notes/incorrect-host-config-option-347e60f957458d54_new.yaml b/releasenotes/notes/incorrect-host-config-option-347e60f957458d54_new.yaml new file mode 100644 index 00000000000..236573fbc01 --- /dev/null +++ b/releasenotes/notes/incorrect-host-config-option-347e60f957458d54_new.yaml @@ -0,0 +1,7 @@ +--- +fixes: + - | + `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.