Skip to content

Commit

Permalink
filter_record_modifier: fix ignoring whitelist_keys (fluent#6200)
Browse files Browse the repository at this point in the history
Signed-off-by: Takahiro Yamashita <[email protected]>
  • Loading branch information
nokute78 authored and edsiper committed Oct 21, 2022
1 parent 22fd4c2 commit 84f6d30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/filter_record_modifier/filter_modifier.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static int config_allowlist_key(struct record_modifier_ctx *ctx,
return -1;
}

flb_config_map_foreach(head, mv, ctx->allowlist_keys_map) {
flb_config_map_foreach(head, mv, list) {
mod_key = flb_malloc(sizeof(struct modifier_key));
if (!mod_key) {
flb_errno();
Expand Down

0 comments on commit 84f6d30

Please sign in to comment.