Merge "Fix auth_token for old oslo.config"
This commit is contained in:
commit
f56e5fef3a
@ -474,7 +474,7 @@ def _conf_values_type_convert(conf):
|
||||
if not conf:
|
||||
return {}
|
||||
opts = {}
|
||||
opt_types = dict((o.dest, o.type) for o in _OPTS)
|
||||
opt_types = dict((o.dest, getattr(o, 'type', str)) for o in _OPTS)
|
||||
for k, v in six.iteritems(conf):
|
||||
try:
|
||||
if v is None:
|
||||
|
Loading…
Reference in New Issue
Block a user