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"))]
impl Into<storage_impl::config::Database> for Database {
fn into(self) -> storage_impl::config::Database {
storage_impl::config::Database {
username: self.username,
password: self.password,
host: self.host,
port: self.port,
dbname: self.dbname,
pool_size: self.pool_size,
connection_timeout: self.connection_timeout,
queue_strategy: self.queue_strategy.into(),
impl From<Database> for storage_impl::config::Database {
fn from(val: Database) -> Self {
Self {
username: val.username,
password: val.password,
host: val.host,
port: val.port,
dbname: val.dbname,
pool_size: val.pool_size,
connection_timeout: val.connection_timeout,
queue_strategy: val.queue_strategy.into(),
}
}
}