This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 2876ea2ecdea13fe8a1ba5116086d45a1e63c2a2 Author: GPK <[email protected]> AuthorDate: Thu Sep 11 16:57:45 2025 +0100 Use httpbingo for example-dag-decorator (#55512) (cherry picked from commit a6352d9fe4b5726439d7ae1555d764a5ae84d5fa) --- airflow-core/src/airflow/example_dags/example_dag_decorator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airflow-core/src/airflow/example_dags/example_dag_decorator.py b/airflow-core/src/airflow/example_dags/example_dag_decorator.py index 9f6e637c917..c4c367f4673 100644 --- a/airflow-core/src/airflow/example_dags/example_dag_decorator.py +++ b/airflow-core/src/airflow/example_dags/example_dag_decorator.py @@ -51,11 +51,11 @@ class GetRequestOperator(BaseOperator): catchup=False, tags=["example"], ) -def example_dag_decorator(url: str = "http://httpbin.org/get"): +def example_dag_decorator(url: str = "https://httpbingo.org/get"): """ DAG to get IP address and echo it via BashOperator. - :param url: URL to get IP address from. Defaults to "http://httpbin.org/get". + :param url: URL to get IP address from. Defaults to "https://httpbingo.org/get". """ get_ip = GetRequestOperator(task_id="get_ip", url=url)
