Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions airflow/sensors/http_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down