Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/out_kinesis_firehose/firehose_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ static int process_api_response(struct flb_firehose *ctx,
(strncmp(response_val.via.str.ptr,
ERR_CODE_SERVICE_UNAVAILABLE, 27) == 0)) {
throughput_exceeded = FLB_TRUE;
flb_plg_error(ctx->ins, "Thoughput limits may have been exceeded, %s",
flb_plg_error(ctx->ins, "Throughput limits may have been exceeded, %s",
ctx->delivery_stream);
}
flb_plg_debug(ctx->ins, "Record %i failed with err_code=%.*s",
Expand Down
2 changes: 1 addition & 1 deletion plugins/out_kinesis_streams/kinesis_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ static int process_api_response(struct flb_kinesis *ctx,
(strncmp(response_val.via.str.ptr,
ERR_CODE_EXCEEDED_THROUGHPUT, 38) == 0)) {
throughput_exceeded = FLB_TRUE;
flb_plg_error(ctx->ins, "Thoughput limits may have been exceeded, %s",
flb_plg_error(ctx->ins, "Throughput limits may have been exceeded, %s",
ctx->stream_name);
}
flb_plg_debug(ctx->ins, "Record %i failed with err_code=%.*s",
Expand Down