fix(router): fix retry_count and add validation for process_tracker (#7614)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
Co-authored-by: Chikke Srujan <chikke.srujan@Chikke-Srujan-N7WRTY72X7.local>
This commit is contained in:
Aditya Chaurasia
2025-04-09 14:57:57 +05:30
committed by GitHub
parent b475171dd2
commit 6ef71051f6
20 changed files with 401 additions and 111 deletions

View File

@ -746,7 +746,10 @@ impl<T, Req: Clone, Resp: Clone> RouterDataConversion<T, Req, Resp>
new_router_data.request,
new_router_data.response,
);
Ok(router_data)
Ok(RouterData {
connector_auth_type: new_router_data.connector_auth_type.clone(),
..router_data
})
}
}