Skip to content

Commit c767acf

Browse files
committed
input_chunk: do not exit if cannot release old chunks
Signed-off-by: Eduardo Silva <[email protected]>
1 parent ac4a8aa commit c767acf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/flb_input_chunk.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,8 @@ int flb_input_chunk_find_space_new_data(struct flb_input_chunk *ic,
526526
}
527527

528528
if (count != 0) {
529-
flb_error("[input chunk] fail to drop enough chunks in order to place new data");
530-
exit(0);
529+
flb_error("[input chunk] fail to drop enough chunks in order to place "
530+
"new data coming from input plugin %s", flb_input_name(ic->in));
531531
}
532532

533533
return 0;

0 commit comments

Comments
 (0)