Merge "Fix spelling typos"
This commit is contained in:
commit
e3f6e05432
@ -36,7 +36,7 @@ There you can find each job for each repository: one for the **murano** and anot
|
||||
* "gate-murano-dashboard-selenium\*" verifies each commit to murano-dashboard repository
|
||||
* "gate-murano-integration\*" verifies each commit to murano repository
|
||||
|
||||
Other jobs allow to build and test Murano documentation and perform another usefull work to support Murano CI infrastructure.
|
||||
Other jobs allow to build and test Murano documentation and perform another useful work to support Murano CI infrastructure.
|
||||
All jobs are run on fresh installation of operating system and all components are installed on each run.
|
||||
|
||||
Murano automated tests: UI tests
|
||||
|
@ -45,7 +45,7 @@ class ExternalContextMiddleware(wsgi.Middleware):
|
||||
"""Get keystone token for external request
|
||||
|
||||
This middleware is used for external requests. It get credentials from
|
||||
request and try to get keystone token for futher authorization.
|
||||
request and try to get keystone token for further authorization.
|
||||
|
||||
:param req: wsgi request object that will be given the context object
|
||||
"""
|
||||
|
@ -237,9 +237,9 @@ def retry(ExceptionToCheck, tries=4, delay=3, backoff=2):
|
||||
try:
|
||||
return f(*args, **kwargs)
|
||||
except ExceptionToCheck as e:
|
||||
LOG.exception(_LE("An exception occured {exc}. Retrying in"
|
||||
"{time} seconds").format(exc=e,
|
||||
time=mdelay))
|
||||
LOG.exception(_LE("An exception occurred {exc}. Retrying "
|
||||
"in {time} seconds").format(exc=e,
|
||||
time=mdelay))
|
||||
eventlet.sleep(mdelay)
|
||||
|
||||
if not forever:
|
||||
|
@ -35,7 +35,7 @@ service_broker_group = cfg.OptGroup(name="service_broker",
|
||||
title="Service Broker Options")
|
||||
|
||||
ApplicationCatalogGroup = [
|
||||
# Aplication catalog tempest configuration
|
||||
# Application catalog tempest configuration
|
||||
cfg.StrOpt("region",
|
||||
default="",
|
||||
help="The application_catalog region name to use. If empty, "
|
||||
|
@ -84,7 +84,7 @@ class ServiceBrokerActionsTest(base.BaseServiceBrokerAdminTest):
|
||||
|
||||
@test.attr(type=["smoke", "gate"])
|
||||
def test_provision_with_incorrect_input(self):
|
||||
"""Test provision with resticted items in object model
|
||||
"""Test provision with restricted items in object model
|
||||
|
||||
Test will fail on deprovision, if parameters from '?' section
|
||||
will passed through service-broker.
|
||||
|
Loading…
Reference in New Issue
Block a user