nailo2c commented on issue #46863:
URL: https://github.com/apache/airflow/issues/46863#issuecomment-2967609616

   It looks like this issue has been fixed in 
`apache-airflow-providers-http>=5.2.0`?
   
   Here's my test dag and I'm unable to reproduce the error the OP reported
   
   ```python
   from airflow import DAG
   from airflow.providers.http.operators.http import HttpOperator
   
   with DAG(
       dag_id="http_deferrable_bug_demo",
       schedule=None,
       catchup=False,
       tags=["example", "bug"],
   ) as dag:
   
       HttpOperator(
           task_id="call_httpbin",
           http_conn_id="http_default",
           endpoint="get",
           method="GET",
           deferrable=True,
       )
   ```
   
   I believe the fix was introduced in PR: 
https://github.com/apache/airflow/pull/45228
   Have you tried upgrading your `apache-airflow-providers-http` package?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to