fix(core): Address clippy config changes (#2654)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Pa1NarK
2023-10-25 15:09:03 +05:30
committed by GitHub
parent f2f8170ae1
commit cfe9c2529e

View File

@ -491,17 +491,17 @@ impl From<QueueStrategy> for bb8::QueueStrategy {
} }
#[cfg(not(feature = "kms"))] #[cfg(not(feature = "kms"))]
impl Into<storage_impl::config::Database> for Database { impl From<Database> for storage_impl::config::Database {
fn into(self) -> storage_impl::config::Database { fn from(val: Database) -> Self {
storage_impl::config::Database { Self {
username: self.username, username: val.username,
password: self.password, password: val.password,
host: self.host, host: val.host,
port: self.port, port: val.port,
dbname: self.dbname, dbname: val.dbname,
pool_size: self.pool_size, pool_size: val.pool_size,
connection_timeout: self.connection_timeout, connection_timeout: val.connection_timeout,
queue_strategy: self.queue_strategy.into(), queue_strategy: val.queue_strategy.into(),
} }
} }
} }