diff --git a/ogc.yml b/ogc.yml index 5f9da95..2847713 100644 --- a/ogc.yml +++ b/ogc.yml @@ -12,7 +12,7 @@ layouts: username: ubuntu scripts: fixtures/ex_deploy_ubuntu provider: aws - scale: 1 + scale: 10 remote-path: /home/ubuntu/ogc exclude: - .git diff --git a/ogc/actions.py b/ogc/actions.py index 9b3f9f4..857a64c 100644 --- a/ogc/actions.py +++ b/ogc/actions.py @@ -83,7 +83,7 @@ def launch_async( launch, [layout.as_dict() for layout in layouts for _ in range(layout.scale)], ) - return (result.unwrap() for result in results) + return (result.unwrap() for result in results if result.is_ok()) def deploy(node_id: int) -> Result[bool, str]: