We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7ef1ed commit c1cae2dCopy full SHA for c1cae2d
sqlx-core/src/pool/inner.rs
@@ -369,9 +369,6 @@ impl<DB: Database> PoolInner<DB> {
369
}
370
371
372
- // an IO error while connecting is assumed to be the system starting up
373
- Ok(Err(Error::Io(e))) if e.kind() == std::io::ErrorKind::ConnectionRefused => (),
374
-
375
// We got a transient database error, retry.
376
Ok(Err(Error::Database(error))) if error.is_transient_in_connect_phase() => (),
377
0 commit comments