fix: Fixed spell check (#8227)

This commit is contained in:
Sarthak Soni
2025-06-06 16:45:48 +05:30
committed by GitHub
parent 45d4ebfde3
commit dbc1bbf26a
4 changed files with 8 additions and 7 deletions

View File

@ -70,4 +70,5 @@ pub struct RoutingEventsResult {
pub created_at: PrimitiveDateTime, pub created_at: PrimitiveDateTime,
pub method: String, pub method: String,
pub routing_engine: String, pub routing_engine: String,
pub routing_approach: Option<String>,
} }

View File

@ -1345,7 +1345,7 @@ pub struct LabelWithScoreEventResponse {
#[serde(rename_all = "snake_case")] #[serde(rename_all = "snake_case")]
pub struct CalSuccessRateEventResponse { pub struct CalSuccessRateEventResponse {
pub labels_with_score: Vec<LabelWithScoreEventResponse>, pub labels_with_score: Vec<LabelWithScoreEventResponse>,
pub routing_apporach: RoutingApproach, pub routing_approach: RoutingApproach,
} }
#[derive(Clone, Debug, Serialize, Deserialize)] #[derive(Clone, Debug, Serialize, Deserialize)]

View File

@ -2087,7 +2087,7 @@ pub async fn perform_success_based_routing(
"unable to calculate/fetch success rate from dynamic routing service", "unable to calculate/fetch success rate from dynamic routing service",
)?; )?;
let event_resposne = api_routing::CalSuccessRateEventResponse { let event_response = api_routing::CalSuccessRateEventResponse {
labels_with_score: success_based_connectors labels_with_score: success_based_connectors
.labels_with_score .labels_with_score
.iter() .iter()
@ -2098,7 +2098,7 @@ pub async fn perform_success_based_routing(
}, },
) )
.collect(), .collect(),
routing_apporach: match success_based_connectors.routing_approach { routing_approach: match success_based_connectors.routing_approach {
0 => api_routing::RoutingApproach::Exploration, 0 => api_routing::RoutingApproach::Exploration,
1 => api_routing::RoutingApproach::Exploitation, 1 => api_routing::RoutingApproach::Exploitation,
_ => { _ => {
@ -2113,8 +2113,8 @@ pub async fn perform_success_based_routing(
}, },
}; };
routing_event.set_response_body(&event_resposne); routing_event.set_response_body(&event_response);
routing_event.set_routing_approach(event_resposne.routing_apporach.to_string()); routing_event.set_routing_approach(event_response.routing_approach.to_string());
let mut connectors = Vec::with_capacity(success_based_connectors.labels_with_score.len()); let mut connectors = Vec::with_capacity(success_based_connectors.labels_with_score.len());
for label_with_score in success_based_connectors.labels_with_score { for label_with_score in success_based_connectors.labels_with_score {

View File

@ -1452,7 +1452,7 @@ pub async fn push_metrics_with_update_window_for_contract_based_routing(
routing_events::RoutingEngine::IntelligentRouter, routing_events::RoutingEngine::IntelligentRouter,
); );
let update_respose = client let update_response = client
.update_contracts( .update_contracts(
profile_id.get_string_repr().into(), profile_id.get_string_repr().into(),
vec![request_label_info], vec![request_label_info],
@ -1474,7 +1474,7 @@ pub async fn push_metrics_with_update_window_for_contract_based_routing(
)?; )?;
let event_response = routing_types::UpdateContractEventResponse { let event_response = routing_types::UpdateContractEventResponse {
status: match update_respose.status { status: match update_response.status {
0 => routing_types::ContractUpdationStatusEventResponse::ContractUpdationSucceeded, 0 => routing_types::ContractUpdationStatusEventResponse::ContractUpdationSucceeded,
1 => routing_types::ContractUpdationStatusEventResponse::ContractUpdationFailed, 1 => routing_types::ContractUpdationStatusEventResponse::ContractUpdationFailed,
_ => { _ => {