This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 80b49311651 Correct header parameter description in HTTP operator
(#59105)
80b49311651 is described below
commit 80b4931165127192310e8cf7720851eb3109f49c
Author: Madison Swain-Bowden <[email protected]>
AuthorDate: Sun Dec 7 13:31:19 2025 -0800
Correct header parameter description in HTTP operator (#59105)
---
providers/http/src/airflow/providers/http/operators/http.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/providers/http/src/airflow/providers/http/operators/http.py
b/providers/http/src/airflow/providers/http/operators/http.py
index 52938e73377..a5db16c0cdb 100644
--- a/providers/http/src/airflow/providers/http/operators/http.py
+++ b/providers/http/src/airflow/providers/http/operators/http.py
@@ -57,7 +57,7 @@ class HttpOperator(BaseOperator):
:param method: The HTTP method to use, default = "POST"
:param data: The data to pass. POST-data in POST/PUT and params
in the URL for a GET request. (templated)
- :param headers: The HTTP headers to be added to the GET request
+ :param headers: The HTTP headers to be added to the request
:param pagination_function: A callable that generates the parameters used
to call the API again,
based on the previous response. Typically used when the API is
paginated and returns for e.g a
cursor, a 'next page id', or a 'next page URL'. When provided, the
Operator will call the API