Skip to content

Commit

Permalink
fixed comments changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ayan-joshi committed Oct 25, 2024
1 parent 553d7c0 commit 2dd2c75
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/storage_impl/src/payments/payment_intent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,6 @@ impl<T: DatabaseStore> PaymentIntentInterface for crate::RouterStore<T> {
) -> error_stack::Result<Vec<(common_enums::IntentStatus, i64)>, StorageError> {
let conn = connection::pg_connection_read(self).await.switch()?;
let conn = async_bb8_diesel::Connection::as_async_conn(&conn);

let mut query = <DieselPaymentIntent as HasTable>::table()
.group_by(pi_dsl::status)
.select((pi_dsl::status, diesel::dsl::count_star()))
Expand Down

0 comments on commit 2dd2c75

Please sign in to comment.