We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6854718 commit d2a1d30Copy full SHA for d2a1d30
plugins/filter_lua/lua.c
@@ -36,7 +36,6 @@
36
#include "fluent-bit/flb_mem.h"
37
#include "lua.h"
38
#include "lua_config.h"
39
-#include "mpack/mpack.h"
40
41
/* helper to rollback encoder buffer to previous offset */
42
static inline void encoder_rollback(struct flb_log_event_encoder *enc,
@@ -826,11 +825,7 @@ struct flb_filter_plugin filter_lua_plugin = {
826
825
.description = "Lua Scripting Filter",
827
.cb_pre_run = cb_lua_pre_run,
828
.cb_init = cb_lua_init,
829
-#ifdef FLB_FILTER_LUA_USE_MPACK
830
- .cb_filter = cb_lua_filter_mpack,
831
-#else
832
.cb_filter = cb_lua_filter,
833
-#endif
834
.cb_exit = cb_lua_exit,
835
.config_map = config_map,
836
.flags = 0
0 commit comments