mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
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:
@ -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(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user