Skip to content

Commit

Permalink
hsa: fix http client connect failures
Browse files Browse the repository at this point in the history
Type: fix

Signed-off-by: Florin Coras <[email protected]>
Change-Id: Ie8b4ba2cfd2c7fc1e27d2a2eb763b31417bc0743
  • Loading branch information
florincoras authored and dwallacelf committed Dec 18, 2024
1 parent 91b626a commit b322584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/hs_apps/http_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ hc_session_connected_callback (u32 app_index, u32 hc_session_index,
{
clib_warning ("hc_session_index[%d] connected error: %U",
hc_session_index, format_session_error, err);
vlib_process_signal_event_mt (vlib_get_main_by_index (s->thread_index),
hcm->cli_node_index, HC_CONNECT_FAILED, 0);
vlib_process_signal_event_mt (vlib_get_main (), hcm->cli_node_index,
HC_CONNECT_FAILED, 0);
return -1;
}

Expand Down

0 comments on commit b322584

Please sign in to comment.