Skip to content

Commit 2ef9238

Browse files
committed
in_splunk: splunk_prot: Fix string in http response code 400.
Signed-off-by: lecaros <lecaros@calyptia.com>
1 parent 1eac5ae commit 2ef9238

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/in_splunk/splunk_prot.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ static int send_response_ng(struct flb_http_response *response,
889889
flb_http_response_set_message(response, "No Content");
890890
}
891891
else if (http_status == 400) {
892-
flb_http_response_set_message(response, "Forbidden");
892+
flb_http_response_set_message(response, "Bad Request");
893893
}
894894

895895
if (message != NULL) {

0 commit comments

Comments
 (0)