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 1c80c1a commit 5958b82Copy full SHA for 5958b82
src/flb_input_thread.c
@@ -370,6 +370,16 @@ static void input_thread(void *data)
370
return;
371
}
372
373
+ ins->processor->notification_channel = ins->notification_channel;
374
+
375
+ ret = flb_processor_init(ins->processor);
376
+ if (ret == -1) {
377
+ flb_error("failed initialize processors for input %s",
378
+ flb_input_name(ins));
379
+ input_thread_instance_set_status(ins, FLB_INPUT_THREAD_ERROR);
380
+ return;
381
+ }
382
383
flb_plg_debug(ins, "[thread init] initialization OK");
384
input_thread_instance_set_status(ins, FLB_INPUT_THREAD_OK);
385
0 commit comments