if it's not a connectivity issue, bail

This commit is contained in:
Christian Schwarz
2024-01-25 16:40:11 +00:00
parent 9fae0d9562
commit f79e4a3a0b

View File

@@ -246,7 +246,7 @@ impl PageServerNode {
if e.is_connect() {
Ok(false)
} else {
Ok(true)
anyhow::bail!(e)
}
}
e => anyhow::bail!(e),