From eafabffdb5f7e3f8ce8ea86827c1c0ae81cf8354 Mon Sep 17 00:00:00 2001 From: quocbao Date: Sun, 1 Dec 2024 03:10:48 +0000 Subject: [PATCH] Fix typo in out http plugin Signed-off-by: quocbao --- plugins/out_http/http.c | 2 +- plugins/out_http/http.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/out_http/http.c b/plugins/out_http/http.c index 4fa3d98615d..b4a5884fa04 100644 --- a/plugins/out_http/http.c +++ b/plugins/out_http/http.c @@ -647,7 +647,7 @@ static struct flb_config_map config_map[] = { { FLB_CONFIG_MAP_BOOL, "log_response_payload", "true", 0, FLB_TRUE, offsetof(struct flb_out_http, log_response_payload), - "Specify if the response paylod should be logged or not" + "Specify if the response payload should be logged or not" }, { FLB_CONFIG_MAP_STR, "http_user", NULL, diff --git a/plugins/out_http/http.h b/plugins/out_http/http.h index ba588ac90ca..3bb80b4eb3d 100644 --- a/plugins/out_http/http.h +++ b/plugins/out_http/http.h @@ -89,7 +89,7 @@ struct flb_out_http { /* Allow duplicated headers */ int allow_dup_headers; - /* Log the response paylod */ + /* Log the response payload */ int log_response_payload; /* Upstream connection to the backend server */