Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions extras/opl/generators/inventory_ingress.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,10 @@ def _get_relatives(self, relatives):
for i in self.per_account_data # because per_account_data is a list not dictionary
]
else:
common_acc_orgid = (
self._get_account()
) # since hbi has same account and org_id values
return [
{
"account": common_acc_orgid,
"orgid": common_acc_orgid,
"account": self._get_account(),

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This way "account" and "orgid" will be different. I do not see a problem with current code.

"orgid": self._get_account(),
"satellite_id": self._get_uuid(),
"satellite_instance_id": self._get_uuid(),
}
Expand Down
Loading