You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2022/04/25 21:19:41 UTC

[airflow] branch main updated: minor callable fix (#23151)

This is an automated email from the ASF dual-hosted git repository.

ash pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 4698f5ef24 minor callable fix (#23151)
4698f5ef24 is described below

commit 4698f5ef24e52d60e07d713bd0ee552e0914293c
Author: Morgan <11...@users.noreply.github.com>
AuthorDate: Mon Apr 25 17:19:23 2022 -0400

    minor callable fix (#23151)
    
    On line 132, changes mention of callable from `execution_time` to `execution_timeout` (as I believe is intended here)
---
 docs/apache-airflow/concepts/tasks.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/concepts/tasks.rst b/docs/apache-airflow/concepts/tasks.rst
index 41fa556dc9..ee8dddf21e 100644
--- a/docs/apache-airflow/concepts/tasks.rst
+++ b/docs/apache-airflow/concepts/tasks.rst
@@ -129,7 +129,7 @@ without retrying.
 The following ``SFTPSensor`` example illustrates this. The ``sensor`` is in ``reschedule`` mode, meaning it
 is periodically executed and rescheduled until it succeeds.
 
-- Each time the sensor pokes the SFTP server, it is allowed to take maximum 60 seconds as defined by ``execution_time``.
+- Each time the sensor pokes the SFTP server, it is allowed to take maximum 60 seconds as defined by ``execution_timeout``.
 - If it takes the sensor more than 60 seconds to poke the SFTP server, ``AirflowTaskTimeout`` will be raised.
   The sensor is allowed to retry when this happens. It can retry up to 2 times as defined by ``retries``.
 - From the start of the first execution, till it eventually succeeds (i.e. after the file 'root/test' appears),