Skip to content

Commit

Permalink
temp: log_path_options_no_ack followup
Browse files Browse the repository at this point in the history
Signed-off-by: Szilard Parrag <[email protected]>
  • Loading branch information
OverOrion committed Oct 14, 2024
1 parent 16f7479 commit 45741fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/logthrdest/tests/test_logthrdestdrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ _generate_messages(TestThreadedDestDriver *dd, gint n, gboolean local)
LogMessage *msg;
FilterXEvalContext filterx_context;
LogPathOptions path_options;
log_path_options_init_noack(&path_options, &filterx_eval_context);
log_path_options_init(&path_options, &filterx_eval_context);
path_options.ack_needed = FALSE;
gchar buf[32];

for (gint i = 0; i < n; i++)
Expand Down
3 changes: 2 additions & 1 deletion modules/http/tests/test_http-signal_slot.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ _generate_message(HTTPDestinationDriver *dd, const gchar *msg_str)
{
LogPathOptions path_options;
FilterXEvalContext filterx_context;
log_path_options_init_noack(&path_options, &filterx_eval_context);
log_path_options_init(&path_options, &filterx_eval_context);
path_options.ack_needed = FALSE;
LogMessage *msg = log_msg_new_empty();
log_msg_set_value_by_name(msg, "MSG", msg_str, -1);
log_pipe_queue(&dd->super.super.super.super, msg, &path_options);
Expand Down

0 comments on commit 45741fe

Please sign in to comment.