We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 225e5d7 commit 7e1c9adCopy full SHA for 7e1c9ad
airflow/sensors/http_sensor.py
@@ -28,8 +28,11 @@
28
29
class HttpSensor(BaseSensorOperator):
30
"""
31
- Executes a HTTP get statement and returns False on failure:
32
- 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.
33
+
34
+ HTTP Error codes other than 404 (like 403) or Connection Refused Error
35
+ would fail the sensor itself directly (no more poking).
36
37
:param http_conn_id: The connection to run the sensor against
38
:type http_conn_id: string
0 commit comments