Merge "Passing port's project_id in port_bind"

This commit is contained in:
Jenkins 2016-12-12 11:40:53 +00:00 committed by Gerrit Code Review
commit c02ff1aa3a
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ def port_bind(endpoint_id, port, subnets, network=None, vm_port=None,
try:
stdout, stderr = _configure_host_iface(
host_ifname, endpoint_id, port_id,
port['network_id'], port['tenant_id'],
port['network_id'], port.get('project_id') or port['tenant_id'],
port[utils.MAC_ADDRESS_KEY],
kind=port.get(constants.VIF_TYPE_KEY),
details=port.get(constants.VIF_DETAILS_KEY))