wasmerio/wasmer · error
App still not reachable after 5 minutes...
Error message
App still not reachable after 5 minutes...
What it means
Error " App still not reachable after 5 minutes..." thrown in wasmerio/wasmer.
Source
Thrown at lib/cli/src/commands/app/deploy.rs:1202
let start = tokio::time::Instant::now();
let client = reqwest::Client::builder()
.connect_timeout(Duration::from_secs(10))
.timeout(Duration::from_secs(90))
// Should not follow redirects.
.redirect(reqwest::redirect::Policy::none())
.build()
.unwrap();
let check_url = if make_default { &app.url } else { &version.url };
let mut sleep_millis: u64 = 1_000;
loop {
let total_elapsed = start.elapsed();
if total_elapsed > Duration::from_secs(60 * 5) {
if !quiet {
eprintln!();
}
anyhow::bail!("\nApp still not reachable after 5 minutes...");
}
{
let mut lock = stderr.lock();
if !quiet {
write!(&mut lock, ".").unwrap();
}
lock.flush().unwrap();
}
let request_start = tokio::time::Instant::now();
tracing::debug!(%check_url, "checking health of app");
match client.get(check_url).send().await {
Ok(res) => {
let header = res
.headers()View on GitHub (pinned to 8c4b9ee9d3)
When it happens
Trigger: Thrown at lib/cli/src/commands/app/deploy.rs:1202 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of wasmerio/wasmer@8c4b9ee9d3 (2026-09-01).
Data as JSON: /api/errors/21ca94185b671aea.
Report an issue: GitHub.