From 9d5d0ac2f5d0ac16613f61660ddd6f86d7cdf755 Mon Sep 17 00:00:00 2001 From: Craig Vyvial Date: Fri, 10 Oct 2014 10:07:29 -0500 Subject: [PATCH] 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 --- trove/configuration/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/trove/configuration/views.py b/trove/configuration/views.py index 27991f9941..db8fa7fc6b 100644 --- a/trove/configuration/views.py +++ b/trove/configuration/views.py @@ -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: