Charles Wagner
Charles Wagner
Updated `application/json` `Content-Type` header detect to allow detecting `application/json` when length is longer than 16 character because of addition encoding in the header value, aka `Content-type: application/json; charset=utf-8` ---- Enter...
https://github.com/fluent/fluent-bit/blob/060418c51bea221f0f6a1992f44dbdee7845f490/plugins/in_http/http_prot.c#L526-L529 Can we update the conditional here to allow `application/json;charset=utf-8` as the `Content-Type`? Currently the conditional just checks for `application/json` (length `16`) so the encoding value causes a failure. See...