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:
Craig Vyvial 2014-10-10 10:07:29 -05:00 committed by Nikhil Manchanda
parent 8af6a9adaa
commit e94c68c786
1 changed files with 3 additions and 1 deletions

View File

@ -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: