Skip to content

Commit

Permalink
fix: generate inventory during funding
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandSherwin authored and jacderida committed Oct 31, 2024
1 parent 09bfa5f commit ab2dbac
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1551,6 +1551,9 @@ async fn main() -> Result<()> {
.provider(provider)
.build()?;
let inventory_services = DeploymentInventoryService::from(&testnet_deployer);
inventory_services
.generate_or_retrieve_inventory(&name, true, None)
.await?;

let environment_details =
get_environment_details(&name, &inventory_services.s3_repository).await?;
Expand Down Expand Up @@ -1589,6 +1592,9 @@ async fn main() -> Result<()> {
.build()?;

let inventory_services = DeploymentInventoryService::from(&testnet_deployer);
inventory_services
.generate_or_retrieve_inventory(&name, true, None)
.await?;

let environment_details =
get_environment_details(&name, &inventory_services.s3_repository).await?;
Expand Down

0 comments on commit ab2dbac

Please sign in to comment.