There was an error while loading. Please reload this page.
1 parent 6de4099 commit da7d7f0Copy full SHA for da7d7f0
1 file changed
workflow/deployer-workflow/impl-flyio/src/lib.rs
@@ -54,9 +54,7 @@ fn app_modify_without_cleanup(
54
activity_fly_http::ips::allocate(
55
app_name,
56
IpRequest {
57
- config: IpVariant::Ipv6(Ipv6Config {
58
- region: Some(REGION),
59
- }),
+ config: IpVariant::Ipv6(Ipv6Config { region: None }),
60
},
61
)
62
.map_err(AppInitModifyError::IpAllocateError)?;
@@ -301,6 +299,9 @@ impl Guest for Component {
301
299
Some(REGION),
302
300
303
.map_err(AppInitError::FinalVmError)?;
+
+ // TODO Add a healthcheck to the exposed server and loop until success is reached, with configurable max retries. Cleanup on failure.
304
305
Ok(())
306
}
307
0 commit comments