Repository: incubator-airflow Updated Branches: refs/heads/master 702a57ec5 -> 0ce068e08
[AIRFLOW-XXX] Fix typo in http_operator.py Replace sensor by operator in the comment: `:param http_conn_id: The connection to run the sensor against` by `:param http_conn_id: The connection to run the operator against` Closes #3544 from thibaultclem/patch-1 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/0ce068e0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/0ce068e0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/0ce068e0 Branch: refs/heads/master Commit: 0ce068e0867f9105f3a1a92d389bc41e6da85991 Parents: 702a57e Author: Thibault Clement <[email protected]> Authored: Mon Jun 25 13:07:23 2018 +0200 Committer: Fokko Driesprong <[email protected]> Committed: Mon Jun 25 13:07:27 2018 +0200 ---------------------------------------------------------------------- airflow/operators/http_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/0ce068e0/airflow/operators/http_operator.py ---------------------------------------------------------------------- diff --git a/airflow/operators/http_operator.py b/airflow/operators/http_operator.py index 2cfc9c0..e757118 100644 --- a/airflow/operators/http_operator.py +++ b/airflow/operators/http_operator.py @@ -27,7 +27,7 @@ class SimpleHttpOperator(BaseOperator): """ Calls an endpoint on an HTTP system to execute an action - :param http_conn_id: The connection to run the sensor against + :param http_conn_id: The connection to run the operator against :type http_conn_id: string :param endpoint: The relative part of the full url. (templated) :type endpoint: string
