Merge "_get_dvr_sync_data: Return a list, rather than dict_values for python3"

This commit is contained in:
Jenkins 2015-08-04 16:41:37 +00:00 committed by Gerrit Code Review
commit 280a210f03

View File

@ -475,7 +475,7 @@ class L3_NAT_with_dvr_db_mixin(l3_db.L3_NAT_db_mixin,
ports_to_populate += interfaces
self._populate_subnets_for_ports(context, ports_to_populate)
self._process_interfaces(routers_dict, interfaces)
return routers_dict.values()
return list(routers_dict.values())
def _get_vm_port_hostid(self, context, port_id, port=None):
"""Return the portbinding host_id."""