Skip to content

Commit 3446ace

Browse files
Leonardo Alminanaedsiper
authored andcommitted
filter_rewrite_tag: updated flb_input_log_append_ex to match the new name
Signed-off-by: Leonardo Alminana <[email protected]>
1 parent f4cdc7d commit 3446ace

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

plugins/filter_rewrite_tag/rewrite_tag.c

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,11 @@ static int ingest_inline(struct flb_rewrite_tag *ctx,
325325
input_instance = (struct flb_input_instance *) processor->data;
326326

327327
if (processor->source_plugin_type == FLB_PLUGIN_INPUT) {
328-
result = flb_input_log_append_ex(input_instance,
329-
processor_unit->stage + 1,
330-
out_tag, flb_sds_len(out_tag),
331-
buf, buf_size);
328+
result = flb_input_log_append_skip_processor_stages(
329+
input_instance,
330+
processor_unit->stage + 1,
331+
out_tag, flb_sds_len(out_tag),
332+
buf, buf_size);
332333

333334
if (result == 0) {
334335
return FLB_TRUE;

0 commit comments

Comments
 (0)