]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fix some typos in neutron/db and IBM SDN-VE plugin
authorBaohua Yang <baohyang@cn.ibm.com>
Mon, 12 May 2014 03:05:18 +0000 (11:05 +0800)
committerBaohua Yang <yangbaohua@gmail.com>
Tue, 13 May 2014 01:44:38 +0000 (01:44 +0000)
For example, in neutron/db/agents_db.py, db_plugin_base_v2 should be changed to db_base_plugin_v2.
There is no bug or blueprint related to this fix.

Change-Id: I0d348d92c9c32f172d1e505cf660aed4d064a440

neutron/db/agents_db.py
neutron/db/agentschedulers_db.py
neutron/db/external_net_db.py
neutron/db/l3_db.py
neutron/db/securitygroups_db.py
neutron/plugins/ibm/agent/sdnve_neutron_agent.py
neutron/plugins/ibm/sdnve_api.py
neutron/plugins/ibm/sdnve_neutron_plugin.py

index bd5e745ad31ef1c931ed1bb0c6315b0a34bc1345..02abda02abb4b393173807a94b5c1de0da4361b7 100644 (file)
@@ -71,7 +71,7 @@ class Agent(model_base.BASEV2, models_v2.HasId):
 
 
 class AgentDbMixin(ext_agent.AgentPluginBase):
-    """Mixin class to add agent extension to db_plugin_base_v2."""
+    """Mixin class to add agent extension to db_base_plugin_v2."""
 
     def _get_agent(self, context, id):
         try:
index 1e46a94faa825030adeb626a1857db4daed308d1..0e1b6d6b1717bbab4aab26f5d7be89526200bb9a 100644 (file)
@@ -97,7 +97,7 @@ class AgentSchedulerDbMixin(agents_db.AgentDbMixin):
 class DhcpAgentSchedulerDbMixin(dhcpagentscheduler
                                 .DhcpAgentSchedulerPluginBase,
                                 AgentSchedulerDbMixin):
-    """Mixin class to add DHCP agent scheduler extension to db_plugin_base_v2.
+    """Mixin class to add DHCP agent scheduler extension to db_base_plugin_v2.
     """
 
     network_scheduler = None
index f339e9415bdea879cd9fc2e728313dfd44c3778f..53f3895364ccd82087f2698ba1e55d1f36cde8e4 100644 (file)
@@ -46,7 +46,7 @@ class ExternalNetwork(model_base.BASEV2):
 
 
 class External_net_db_mixin(object):
-    """Mixin class to add external network methods to db_plugin_base_v2."""
+    """Mixin class to add external network methods to db_base_plugin_v2."""
 
     def _network_model_hook(self, context, original_model, query):
         query = query.outerjoin(ExternalNetwork,
index beebaee878f664ed2fb7ec272ba1a1d91b593758..69f133eba642248e51992dd2819750a04183d76d 100644 (file)
@@ -78,7 +78,7 @@ class FloatingIP(model_base.BASEV2, models_v2.HasId, models_v2.HasTenant):
 
 
 class L3_NAT_db_mixin(l3.RouterPluginBase):
-    """Mixin class to add L3/NAT router methods to db_plugin_base_v2."""
+    """Mixin class to add L3/NAT router methods to db_base_plugin_v2."""
 
     l3_rpc_notifier = l3_rpc_agent_api.L3AgentNotify
 
index f620d26fbd533c700ac66bfa4bfdcff5b27ca19e..c897071b3ea49118cbc127c4407a5cec2099ac3d 100644 (file)
@@ -91,7 +91,7 @@ class SecurityGroupRule(model_base.BASEV2, models_v2.HasId,
 
 
 class SecurityGroupDbMixin(ext_sg.SecurityGroupPluginBase):
-    """Mixin class to add security group to db_plugin_base_v2."""
+    """Mixin class to add security group to db_base_plugin_v2."""
 
     __native_bulk_support = True
 
index 8b1b21dddba0de811d044f91b6e9d49a22795a73..03b419ceea375f88362623abce4ad97e257fc70e 100644 (file)
@@ -161,7 +161,7 @@ class SdnveNeutronAgent():
         Otherwise, creates the bridge if not already existing.
         :param bridge_name: the name of the integration bridge.
         :param reset_br: A boolean to rest the bridge if True.
-        :param out_of_band: A boolean inidicating controller is out of band.
+        :param out_of_band: A boolean indicating controller is out of band.
         :param controller_ip: IP address to use as the bridge controller.
         :returns: the integration bridge
         '''
index ab918d2c63c334ca20946b8061e28ca6f66d1de0..86411612e1cc17d2bc01ed547c3ff067516142ad 100644 (file)
@@ -41,7 +41,7 @@ SDNVE_URL = 'https://%s:%s%s'
 
 
 class RequestHandler(object):
-    '''Handles processeing requests to and responses from controller.'''
+    '''Handles processing requests to and responses from controller.'''
 
     def __init__(self, controller_ips=None, port=None, ssl=None,
                  base_url=None, userid=None, password=None,
@@ -53,7 +53,7 @@ class RequestHandler(object):
         :param port: Username for authentication.
         :param timeout: Time out for http requests.
         :param userid: User id for accessing controller.
-        :param password: Password for accessing the controlelr.
+        :param password: Password for accessing the controller.
         :param base_url: The base url for the controller.
         :param controller_ips: List of controller IP addresses.
         :param formats: Supported formats.
index 6b2178001f5016d166e62556fd2be02ea51d790f..ecfd97166392be6a21d5e095e218dbf27ce1cb00 100644 (file)
@@ -95,7 +95,7 @@ def _ha(func):
         When a controller is detected to be not responding, and a
         new controller is chosen to be used in its place, this decorator
         makes sure the existing integration bridges are set to point
-        to the new controleer by calling the set_controller method.
+        to the new controller by calling the set_controller method.
         '''
         ret_func = func(self, *args, **kwargs)
         self.set_controller(args[0])
@@ -444,7 +444,7 @@ class SdnvePluginV2(db_base_plugin_v2.NeutronDbPluginV2,
             router['router']['admin_state_up'] = True
 
         tenant_id = self._get_tenant_id_for_create(context, router['router'])
-        # Create a new Pinnaacles tenant if need be
+        # Create a new SDN-VE tenant if need be
         sdnve_tenant = self.sdnve_client.sdnve_check_and_create_tenant(
             tenant_id)
         if sdnve_tenant is None:
@@ -452,7 +452,7 @@ class SdnvePluginV2(db_base_plugin_v2.NeutronDbPluginV2,
                 msg=_('Create router failed: no SDN-VE tenant.'))
 
         new_router = super(SdnvePluginV2, self).create_router(context, router)
-        # Create Sdnve router
+        # Create SDN-VE router
         (res, data) = self.sdnve_client.sdnve_create('router', new_router)
         if res not in constants.HTTP_ACCEPTABLE:
             super(SdnvePluginV2, self).delete_router(context, new_router['id'])