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 0ff6efc commit 7af06baCopy full SHA for 7af06ba
dataikuapi/dss/projectdeployer.py
@@ -532,7 +532,7 @@ def list_deployments(self, infra_id=None):
532
"""
533
if infra_id is None:
534
return [DSSProjectDeployerDeployment(self.client, deployment["id"]) for deployment in self.light_status["deployments"]]
535
- return [DSSProjectDeployerDeployment(self.client, deployment["id"]) for deployment in self.light_status["deployments"] if infra_id == deployment.infraId]
+ return [DSSProjectDeployerDeployment(self.client, deployment["id"]) for deployment in self.light_status["deployments"] if infra_id == deployment["infraId"]]
536
537
def get_bundles(self):
538
0 commit comments