]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
update docstring for get_ports_on_host_by_subnet
authorlzklibj <lzklibj@cn.ibm.com>
Thu, 17 Dec 2015 04:07:32 +0000 (12:07 +0800)
committerlzklibj <lzklibj@cn.ibm.com>
Wed, 23 Dec 2015 03:28:50 +0000 (11:28 +0800)
This patch updates docstring for get_ports_on_host_by_subnet, to
tell that the method will only get dvr serviced ports, not all ports
for given subnet and host.

Change-Id: I85ea5a9e37b6c894f7d51e73c10143b208a29f0e

neutron/api/rpc/handlers/dvr_rpc.py
neutron/db/dvr_mac_db.py

index 02909b6f70a3fc38a2235b8023efd31f7852c50b..73a5918be9aeb44c29c048ce0c9ab59aedca0a4e 100644 (file)
@@ -53,6 +53,8 @@ class DVRServerRpcApi(object):
 
     @log_helpers.log_method_call
     def get_ports_on_host_by_subnet(self, context, host, subnet):
+        """Get DVR serviced ports on given host and subnet."""
+
         cctxt = self.client.prepare()
         return cctxt.call(context, 'get_ports_on_host_by_subnet',
                           host=host, subnet=subnet)
@@ -95,6 +97,8 @@ class DVRServerRpcCallback(object):
         return self.plugin.get_dvr_mac_address_by_host(context, host)
 
     def get_ports_on_host_by_subnet(self, context, **kwargs):
+        """Get DVR serviced ports for given host and subnet."""
+
         host = kwargs.get('host')
         subnet = kwargs.get('subnet')
         LOG.debug("DVR Agent requests list of VM ports on host %s", host)
index 0399292f2ae97be3f16dec9298581300d1f793e3..53f6dd9e70e57599f00a0a0f1ac90bea070a7d5b 100644 (file)
@@ -126,7 +126,7 @@ class DVRDbMixin(ext_dvr.DVRMacAddressPluginBase):
 
     @log_helpers.log_method_call
     def get_ports_on_host_by_subnet(self, context, host, subnet):
-        """Returns ports of interest, on a given subnet in the input host
+        """Returns DVR serviced ports on a given subnet in the input host
 
         This method returns ports that need to be serviced by DVR.
         :param context: rpc request context