From 7e1c9ade2fca17439ecf33ae85bbca26afb89982 Mon Sep 17 00:00:00 2001 From: Xiaodong Date: Mon, 27 Aug 2018 17:04:36 +0800 Subject: [PATCH] [AIRFLOW-2959] Refine HTTPSensor doc (#3809) HTTP Error code other than 404, or Connection Refused, would fail the sensor itself directly (no more poking). --- airflow/sensors/http_sensor.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/airflow/sensors/http_sensor.py b/airflow/sensors/http_sensor.py index 33f8531368ec1..f665737e96225 100644 --- a/airflow/sensors/http_sensor.py +++ b/airflow/sensors/http_sensor.py @@ -28,8 +28,11 @@ class HttpSensor(BaseSensorOperator): """ - Executes a HTTP get statement and returns False on failure: - 404 not found or response_check function returned False + Executes a HTTP GET statement and returns False on failure caused by + 404 Not Found or `response_check` returning False. + + HTTP Error codes other than 404 (like 403) or Connection Refused Error + would fail the sensor itself directly (no more poking). :param http_conn_id: The connection to run the sensor against :type http_conn_id: string