fix(router): Fixed stack over flow for session call in authentication connectors (#7983)

This commit is contained in:
Sahkal Poddar
2025-05-08 15:09:55 +05:30
committed by GitHub
parent a4a564fee2
commit 1933722637

View File

@ -1288,13 +1288,14 @@ impl MerchantConnectorAccountInterface for KafkaStore {
key_store: &domain::MerchantKeyStore, key_store: &domain::MerchantKeyStore,
connector_type: common_enums::ConnectorType, connector_type: common_enums::ConnectorType,
) -> CustomResult<Vec<domain::MerchantConnectorAccount>, errors::StorageError> { ) -> CustomResult<Vec<domain::MerchantConnectorAccount>, errors::StorageError> {
self.list_enabled_connector_accounts_by_profile_id( self.diesel_store
state, .list_enabled_connector_accounts_by_profile_id(
profile_id, state,
key_store, profile_id,
connector_type, key_store,
) connector_type,
.await )
.await
} }
async fn insert_merchant_connector_account( async fn insert_merchant_connector_account(