Merge "Fix misspells"

This commit is contained in:
Jenkins 2013-12-05 07:08:16 +00:00 committed by Gerrit Code Review
commit fc5d67cd1b
3 changed files with 5 additions and 5 deletions

View File

@ -746,7 +746,7 @@ class LoadBalancerPluginDb(LoadBalancerPluginBase,
v = health_monitor['health_monitor'] v = health_monitor['health_monitor']
tenant_id = self._get_tenant_id_for_create(context, v) tenant_id = self._get_tenant_id_for_create(context, v)
with context.session.begin(subtransactions=True): with context.session.begin(subtransactions=True):
# setting ACTIVE status sinse healthmon is shared DB object # setting ACTIVE status since healthmon is shared DB object
monitor_db = HealthMonitor(id=uuidutils.generate_uuid(), monitor_db = HealthMonitor(id=uuidutils.generate_uuid(),
tenant_id=tenant_id, tenant_id=tenant_id,
type=v['type'], type=v['type'],

View File

@ -52,7 +52,7 @@ class LoadBalancerAbstractDriver(object):
def delete_vip(self, context, vip): def delete_vip(self, context, vip):
"""A real driver would invoke a call to his backend """A real driver would invoke a call to his backend
and try to delete the Vip. and try to delete the Vip.
if the deletion was successfull, delete the record from the database. if the deletion was successful, delete the record from the database.
if the deletion has failed, set the Vip status to ERROR. if the deletion has failed, set the Vip status to ERROR.
""" """
pass pass

View File

@ -402,7 +402,7 @@ class LoadBalancerDriver(abstract_driver.LoadBalancerAbstractDriver):
def _get_service(self, pool_id, network_id): def _get_service(self, pool_id, network_id):
"""Get a service name. """Get a service name.
if you cant find one, if you can't find one,
create a service and create l2_l2 WF. create a service and create l2_l2 WF.
""" """
@ -468,7 +468,7 @@ class LoadBalancerDriver(abstract_driver.LoadBalancerAbstractDriver):
def _create_workflow(self, wf_name, wf_template_name, def _create_workflow(self, wf_name, wf_template_name,
create_workflow_params=None): create_workflow_params=None):
"""Create a WF if it doesnt exists yet.""" """Create a WF if it doesn't exists yet."""
if not self.workflow_templates_exists: if not self.workflow_templates_exists:
self._verify_workflow_templates() self._verify_workflow_templates()
if not self._workflow_exists(wf_name): if not self._workflow_exists(wf_name):
@ -484,7 +484,7 @@ class LoadBalancerDriver(abstract_driver.LoadBalancerAbstractDriver):
LOG.debug(_('create_workflow response: %s'), str(response)) LOG.debug(_('create_workflow response: %s'), str(response))
def _verify_workflow_templates(self): def _verify_workflow_templates(self):
"""Verify the existance of workflows on vDirect server.""" """Verify the existence of workflows on vDirect server."""
workflows = {self.l2_l3_wf_name: workflows = {self.l2_l3_wf_name:
False, self.l4_wf_name: False} False, self.l4_wf_name: False}
resource = '/api/workflowTemplate' resource = '/api/workflowTemplate'