Cherry Pick - Bug fix: Update the descripton of Base URL Access

When accessing Base URL, a description text will be shown.
Current description text is out of date. This patch updates
the description text to match current Gluon design.

Change-Id: I19613f43a29d66d36168f7bef037bdce541123b8
Signed-off-by: Bin Hu <bh526r@att.com>
This commit is contained in:
Bin Hu 2017-02-27 13:30:05 -08:00
parent 236856c034
commit 4f681755d0
1 changed files with 5 additions and 2 deletions

View File

@ -60,8 +60,11 @@ class Root(APIBase):
def convert(version='v1'):
root = Root()
root.name = "Gluon API"
root.description = ("OpenStack Gluon acts as a port arbiter between "
"Nova and port-provider such as Neutron")
root.description = ("OpenStack Gluon is a port arbiter that maintains "
"a list of ports and bindings of different "
"network backends. A Proton Server is the API "
"server that hosts multiple Protons, i.e. "
"multiple sets of APIs.")
root.versions = [Version.convert(version)]
root.default_version = Version.convert(version)
return root