Merge "unify REST word"

This commit is contained in:
Jenkins
2015-08-27 00:05:59 +00:00
committed by Gerrit Code Review
4 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@
# under the License.
"""
Heat API Server. An OpenStack ReST API to Heat.
Heat API Server. An OpenStack REST API to Heat.
"""
import eventlet
@@ -60,7 +60,7 @@ if __name__ == '__main__':
port = cfg.CONF.heat_api.bind_port
host = cfg.CONF.heat_api.bind_host
LOG.info(_LI('Starting Heat ReST API on %(host)s:%(port)s'),
LOG.info(_LI('Starting Heat REST API on %(host)s:%(port)s'),
{'host': host, 'port': port})
profiler.setup('heat-api', host)
gmr.TextGuruMeditation.setup_autorun(version)

View File

@@ -28,7 +28,7 @@ from heat.common import wsgi
class API(wsgi.Router):
"""
WSGI router for Heat v1 ReST API requests.
WSGI router for Heat v1 REST API requests.
"""
def __init__(self, conf, **local_conf):

View File

@@ -12,7 +12,7 @@
# under the License.
"""
Stack endpoint for Heat v1 ReST API.
Stack endpoint for Heat v1 REST API.
"""
import contextlib

View File

@@ -41,7 +41,7 @@ messaging.setup()
port = cfg.CONF.heat_api.bind_port
host = cfg.CONF.heat_api.bind_host
LOG.info(_LI('Starting Heat ReST API on %(host)s:%(port)s'),
LOG.info(_LI('Starting Heat REST API on %(host)s:%(port)s'),
{'host': host, 'port': port})
profiler.setup('heat-api', host)