We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1562d08 commit 193359fCopy full SHA for 193359f
servicecatalog_puppet/workflow/portfolio/portfolio_management/copy_into_spoke_local_portfolio_task.py
@@ -129,13 +129,18 @@ def run(self):
129
)
130
self.info("Finished associating products")
131
132
+ throttle = 0
133
for product_id, product_details in versions_requiring_updates.items():
134
for version_id, version_details in product_details.items():
135
servicecatalog.update_provisioning_artifact(
136
ProductId=product_id,
137
ProvisioningArtifactId=version_id,
138
**version_details,
139
140
+ throttle += 1
141
+ if throttle == 4:
142
+ time.sleep(1.1)
143
144
self.info("Finished updating versions that were copied")
145
146
products_to_check = list(products_requiring_adding_to_portfolio.values())
0 commit comments