Skip to content

Commit

Permalink
fixing tenant_id typos
Browse files Browse the repository at this point in the history
  • Loading branch information
John McDowall committed Feb 25, 2016
1 parent ec65ca5 commit 5e3f649
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion neutron/db/db_base_plugin_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ def _make_sfi_dict(self, sfi, fields=None,
'firewall_id': sfi['firewall_id'],
'application_id': sfi['application_id'],
'status': sfi['status'],
'device_owner': port['device_owner']}
'device_owner': port['device_owner'],
'tenant_id': port['tenant_id'] }

return self._fields(res, fields)

Expand Down

0 comments on commit 5e3f649

Please sign in to comment.