Skip to content

Commit

Permalink
fix to redeploy code
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Oct 26, 2023
1 parent 2d1c9ed commit ff9abb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion foursight_core/react/api/aws_ecs_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def get_latest_build_info(cluster_arn: str) -> Optional[Tuple[str, str]]:
# are actually restarted; namely only those that have been presented to the user in the UI.
if services.get("services"):
for service in services.get("services"):
response = ecs.update_ecs_services(cluster_name=cluster_arn, service_name=service["full_arn"])
response = ecs.update_ecs_service(cluster_name=cluster_arn, service_name=service["full_arn"])

return {"status": response }

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "foursight-core"
version = "5.0.0.1b15" # TODO: To become 5.1.0
version = "5.0.0.1b16" # TODO: To become 5.1.0
description = "Serverless Chalice Application for Monitoring"
authors = ["4DN-DCIC Team <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit ff9abb6

Please sign in to comment.