File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
hyperswitch_connectors/src/connectors/netcetera
router/src/core/payments/routing Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3002,7 +3002,7 @@ pub struct ProfileUpdate {
3002
3002
#[ schema( value_type = Option <MerchantCountryCode >, example = "840" ) ]
3003
3003
pub merchant_country_code : Option < common_types:: payments:: MerchantCountryCode > ,
3004
3004
3005
- /// Inidcates the state of revenue recovery algorithm type
3005
+ /// Indicates the state of revenue recovery algorithm type
3006
3006
#[ schema( value_type = Option <RevenueRecoveryAlgorithmType >, example = "cascading" ) ]
3007
3007
pub revenue_recovery_retry_algorithm_type :
3008
3008
Option < common_enums:: enums:: RevenueRecoveryAlgorithmType > ,
Original file line number Diff line number Diff line change 188
188
ds_trans_id : response. authentication_response . ds_trans_id ,
189
189
eci : response. eci ,
190
190
challenge_code,
191
- challenge_cancel : None , // Note - challenge_cancel field is recieved in the RReq and updated in DB during external_authentication_incoming_webhook_flow
191
+ challenge_cancel : None , // Note - challenge_cancel field is received in the RReq and updated in DB during external_authentication_incoming_webhook_flow
192
192
challenge_code_reason : response. authentication_response . trans_status_reason ,
193
193
message_extension,
194
194
} )
Original file line number Diff line number Diff line change @@ -420,14 +420,14 @@ pub async fn decision_engine_routing(
420
420
return Ok ( Vec :: default ( ) ) ;
421
421
} ;
422
422
423
- let de_output_conenctor = extract_de_output_connectors ( de_euclid_response. output )
423
+ let de_output_connector = extract_de_output_connectors ( de_euclid_response. output )
424
424
. map_err ( |e| {
425
425
logger:: error!( error=?e, "decision_engine_euclid_evaluation_error: Failed to extract connector from Output" ) ;
426
426
e
427
427
} ) ?;
428
428
429
429
transform_de_output_for_router (
430
- de_output_conenctor . clone ( ) ,
430
+ de_output_connector . clone ( ) ,
431
431
de_euclid_response. evaluated_output . clone ( ) ,
432
432
)
433
433
. map_err ( |e| {
You can’t perform that action at this time.
0 commit comments