Skip to content

Commit

Permalink
fix(ci): resolve React Native build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
youxq committed Oct 7, 2024
1 parent da82b63 commit 122f6cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quaint/src/pooled.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ pub use manager::*;
use crate::error::NativeErrorKind;

use crate::{
connector::{ConnectionInfo, MakeTlsConnectorManager},
connector::ConnectionInfo,
error::{Error, ErrorKind},
};
use mobc::Pool;
Expand Down Expand Up @@ -425,7 +425,7 @@ impl Quaint {
let max_connection_lifetime = url.max_connection_lifetime();
let max_idle_connection_lifetime = url.max_idle_connection_lifetime();

let tls_manager = MakeTlsConnectorManager::new(url.clone());
let tls_manager = crate::connector::MakeTlsConnectorManager::new(url.clone());
let manager = QuaintManager::Postgres { url, tls_manager };
let mut builder = Builder::new(s, manager)?;

Expand Down

0 comments on commit 122f6cb

Please sign in to comment.