Source code for astronomer.providers.http.sensors.http
import warnings
from typing import Any
from airflow.providers.http.sensors.http import HttpSensor
[docs]
class HttpSensorAsync(HttpSensor):
"""
This class is deprecated.
Use :class: `~airflow.providers.http.sensors.http.HttpSensor` instead
and set `deferrable` param to `True` instead.
"""
is_deprecated = True
post_deprecation_replacement = "from airflow.providers.http.sensors.http import HttpSensor"
def __init__(self, *args: Any, **kwargs: Any) -> None:
warnings.warn(
(
"This class is deprecated. "
"Use `airflow.providers.http.sensors.http.HttpSensor` "
"and set `deferrable` param to `True` instead."
),
DeprecationWarning,
stacklevel=2,
)
# TODO: Remove once deprecated
if kwargs.get("poll_interval"):
warnings.warn(
"Argument `poll_interval` is deprecated and will be removed "
"in a future release. Please use `poke_interval` instead.",
DeprecationWarning,
stacklevel=2,
)
kwargs["poke_interval"] = kwargs.pop("poll_interval")
super().__init__(*args, deferrable=True, **kwargs)