Skip to content

Commit

Permalink
fix(cli): allow parallel upload of assets
Browse files Browse the repository at this point in the history
  • Loading branch information
ming535 committed Feb 26, 2023
1 parent b15248c commit bb52a1e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/fair-tomatoes-unite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@lagon/cli': patch
---

Allow parallel upload for assets in lagon deploy command.
2 changes: 1 addition & 1 deletion crates/cli/src/utils/deployments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ pub async fn create_deployment(
}

while let Some(res) = join_set.join_next().await {
res?.expect("Couldn't upload asset {asset} to url {url}");
res?.expect("Couldn't upload asset");
}

end_progress();
Expand Down

0 comments on commit bb52a1e

Please sign in to comment.