Skip to content

Commit da7d7f0

Browse files
committed
fix: Remove region from IPv6 configuration
1 parent 6de4099 commit da7d7f0

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

  • workflow/deployer-workflow/impl-flyio/src

workflow/deployer-workflow/impl-flyio/src/lib.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ fn app_modify_without_cleanup(
5454
activity_fly_http::ips::allocate(
5555
app_name,
5656
IpRequest {
57-
config: IpVariant::Ipv6(Ipv6Config {
58-
region: Some(REGION),
59-
}),
57+
config: IpVariant::Ipv6(Ipv6Config { region: None }),
6058
},
6159
)
6260
.map_err(AppInitModifyError::IpAllocateError)?;
@@ -301,6 +299,9 @@ impl Guest for Component {
301299
Some(REGION),
302300
)
303301
.map_err(AppInitError::FinalVmError)?;
302+
303+
// TODO Add a healthcheck to the exposed server and loop until success is reached, with configurable max retries. Cleanup on failure.
304+
304305
Ok(())
305306
}
306307
}

0 commit comments

Comments
 (0)