Merge "Allow boolean values to pass through to glance"
This commit is contained in:
commit
70f4d713e2
@ -2988,6 +2988,8 @@ class OpenStackCloud(_normalize.Normalizer):
|
||||
else:
|
||||
if v is None:
|
||||
ret[k] = None
|
||||
elif isinstance(v, bool):
|
||||
ret[k] = v
|
||||
else:
|
||||
ret[k] = str(v)
|
||||
ret.update(meta)
|
||||
|
Loading…
Reference in New Issue
Block a user