convert restart_required to 'true' or 'false' string
The output of the configuration-parameters-list/show was inadvertently changed when the parameters were moved into the database in Juno. Change-Id: Ic7d215482f5a9ab8ba2059cae7b91a99b35f2795 Closes-Bug: #1379665
This commit is contained in:
parent
89bf927ae9
commit
9d5d0ac2f5
@ -118,10 +118,12 @@ class ConfigurationParameterView(object):
|
||||
self.config = config
|
||||
|
||||
def data(self):
|
||||
# v1 api expects this to be a 'true' or 'false' string instead of 1/0
|
||||
restart_required = 'true' if self.config.restart_required else 'false'
|
||||
ret = {
|
||||
"name": self.config.name,
|
||||
"datastore_version_id": self.config.datastore_version_id,
|
||||
"restart_required": self.config.restart_required,
|
||||
"restart_required": restart_required,
|
||||
"type": self.config.data_type,
|
||||
}
|
||||
if self.config.max_size:
|
||||
|
Loading…
x
Reference in New Issue
Block a user