jroachgolf84 commented on issue #68990: URL: https://github.com/apache/airflow/issues/68990#issuecomment-4802417082
@surendarvarmas - unfortunately, seems like there is a little bug here. `poke_interval` is "ignored" (for lack of a better phrase), and instead the `poll_interval` parameter is used. That being said, there is an easy fix for you here to immediately solve your issue (just changing `poke_interval` -> `poll_interval`). Change here seems to be updating the `__init__` method to instead take `poke_interval`, then using that here: https://github.com/apache/airflow/blob/2161027d8444fbf26fee9cfea5ac0131b6738cef/providers/standard/src/airflow/providers/standard/sensors/external_task.py#L455 Not sure how we want to handle deprecating that `poll_interval` parameter? I assume there are quite a few users using `poll_interval`, and we don't want to break that. -- 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]
