Amend the spelling error of a word

Change-Id: I7a2da9597d601740921c8e6fc16f9c37b1a60eef
This commit is contained in:
chengebj5238 2018-06-06 18:03:02 +08:00
parent 96cce3ed74
commit 52eaaa7583
4 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ set -o pipefail
SCRIPTDIR=$(dirname $0)
AMP_VENV=/opt/amphora-agent-venv
# Create a virutal environment to contain the amphora agent
# Create a virtual environment to contain the amphora agent
${DIB_PYTHON} -m virtualenv $AMP_VENV
$AMP_VENV/bin/pip install pip --upgrade

View File

@ -63,7 +63,7 @@ def call_provider(provider, driver_method, *args, **kwargs):
raise exceptions.ProviderUnsupportedOptionError(
prov=provider, user_msg=e.user_fault_string)
except Exception as e:
LOG.exception("Provider '%s' raised an unkown error: %s",
LOG.exception("Provider '%s' raised an unknown error: %s",
provider, e)
raise exceptions.ProviderDriverError(prov=provider, user_msg=e)

View File

@ -232,7 +232,7 @@ class ListenersController(base.BaseController):
driver_utils.db_listener_to_provider_listener(db_listener))
# re-inject the sni container references lost due to SNI
# being a seperate table in the DB
# being a separate table in the DB
provider_listener.sni_container_refs = listener.sni_container_refs
# Dispatch to the driver

View File

@ -1,7 +1,7 @@
---
features:
- |
In some enviornments (e.g. OSA) Neutron and Octavia use different queues
In some environments (e.g. OSA) Neutron and Octavia use different queues
(at least different vhosts) and so if Octavia posts to the Octavia queue
and Neutron listens on the Neutron queue the events will never make it
over.