NSX|V: Fix _make_port_dict api

Commit Ic08e4049f6156c0700ca3c7aee251b6eb0eb97da added bulk argument
to this api.
(Master branch already fixed with I6bbe34cfedf731f0711fee45800d9f78247bc6ba)

Change-Id: I3339ffffa1eaa907f22002f65b197c184bc76cb4
This commit is contained in:
asarfaty 2021-02-02 10:39:53 +02:00 committed by Adit Sarfaty
parent d227ba7e34
commit e8f281c732
1 changed files with 2 additions and 2 deletions

View File

@ -2220,10 +2220,10 @@ class NsxVPluginV2(addr_pair_db.AllowedAddressPairsMixin,
return port_data
def _make_port_dict(self, port, fields=None,
process_extensions=True):
process_extensions=True, bulk=False):
port_data = super(NsxVPluginV2, self)._make_port_dict(
port, fields=fields,
process_extensions=process_extensions)
process_extensions=process_extensions, bulk=bulk)
self._remove_provider_security_groups_from_list(port_data)
return port_data