Skip to content

Commit

Permalink
fix(userspace/falco/lua): correct argument
Browse files Browse the repository at this point in the history
This explain why `buffered_output: false` was not honored for stdout

Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
  • Loading branch information
leogr authored and poiana committed Jul 3, 2020
1 parent 54a6d5c commit fecf1a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userspace/falco/lua/output.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ local mod = {}
local outputs = {}

function mod.stdout(event, rule, source, priority, priority_num, msg, format, hostname, options)
mod.stdout_message(priority, priority_num, msg, outputs)
mod.stdout_message(priority, priority_num, msg, options)
end

function mod.stdout_message(priority, priority_num, msg, options)
Expand Down

0 comments on commit fecf1a9

Please sign in to comment.