Skip to content

Commit

Permalink
Merge pull request #77 from cloudblue/bug/LITE-28327-Error-on-deploym…
Browse files Browse the repository at this point in the history
…ents-requests-marketplaces

LITE-28327: Changing dict keys for a list when try to get  marketplac…
  • Loading branch information
d3rky authored Aug 7, 2023
2 parents 716fab3 + 2b60167 commit 403d904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connect_ext_ppr/webapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def list_deployment_request_marketplaces(
).filter_by(deployment_request=dr.id)

marketplaces_pprs = {m.marketplace: m.ppr for m in marketplaces}
marketplaces_data = get_marketplaces(client, marketplaces_pprs.keys())
marketplaces_data = get_marketplaces(client, list(marketplaces_pprs.keys()))

for marketplace in marketplaces_data:
marketplaces_list.append(
Expand Down

0 comments on commit 403d904

Please sign in to comment.