josh-fell opened a new issue, #40209: URL: https://github.com/apache/airflow/issues/40209
### Discussed in https://github.com/apache/airflow/discussions/39597 <div type='discussions-op-text'> <sup>Originally posted by **bejota** May 13, 2024</sup> Hello, I'm using HttpSensor to poll SLURM's REST API for job status. I'm using `deferrable` mode with `response_check`. The task only goes to the triggerer if I remove the `response_check`. Airflow Docker Image `apache/airflow:latest-python3.9` Airflow Version `2.9.0` apache-airflow-providers-http `4.10.0` Does not move to triggerer: ``` check_slurm_job = HttpSensor( task_id="check_slurm_job", http_conn_id="slurm_conn_id", method="get", endpoint="slurm/v0.0.40/job/999", response_check=lambda response: "COMPLETED" in response.text, poke_interval=10, timeout=60 * 60 * 5, deferrable=True, # not deferring to triggerer ? dag=dag, ) ``` Moves to triggerer: ``` check_slurm_job = HttpSensor( task_id="check_slurm_job", http_conn_id="slurm_conn_id", method="get", endpoint="slurm/v0.0.40/job/999", # response_check=lambda response: "COMPLETED" in response.text, poke_interval=10, timeout=60 * 60 * 5, deferrable=True, # not deferring to triggerer ? dag=dag, ) ``` In digging further, I see that HttpTrigger has no `response_check` method. I will attempt to add one, unless there is a better approach to this problem?</div> -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
