Skip to content

Commit

Permalink
input_chunk: clarify space limit error. (#4277)
Browse files Browse the repository at this point in the history
Signed-off-by: Phillip Whelan <[email protected]>
  • Loading branch information
pwhelan authored Nov 30, 2021
1 parent 861af37 commit 8c49120
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/flb_input_chunk.c
Original file line number Diff line number Diff line change
Expand Up @@ -522,8 +522,8 @@ int flb_input_chunk_find_space_new_data(struct flb_input_chunk *ic,
* old chunks for the incoming chunk. We need to adjust the routes_mask
* of the incoming chunk to not flush to that output instance.
*/
flb_error("[input chunk] no enough space in filesystem to buffer "
"chunk %s in plugin %s", flb_input_chunk_get_name(ic), o_ins->name);
flb_error("[input chunk] chunk %s would exceed total limit size in plugin %s",
flb_input_chunk_get_name(ic), o_ins->name);

flb_routes_mask_clear_bit(ic->routes_mask, o_ins->id);
if (flb_routes_mask_is_empty(ic->routes_mask)) {
Expand Down

0 comments on commit 8c49120

Please sign in to comment.