This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 56245aa6417e0e410633d7da4ba408f213cd928a Author: Abhilash Kishore <[email protected]> AuthorDate: Sat May 9 17:35:41 2020 -0700 Document default timeout value for SSHOperator (#8744) (cherry picked from commit 21cc7d729827e9f3af0698bf647b2d41fc87b11c) --- airflow/contrib/operators/ssh_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/contrib/operators/ssh_operator.py b/airflow/contrib/operators/ssh_operator.py index 445f7b4..1322b4f 100644 --- a/airflow/contrib/operators/ssh_operator.py +++ b/airflow/contrib/operators/ssh_operator.py @@ -43,7 +43,7 @@ class SSHOperator(BaseOperator): :type remote_host: str :param command: command to execute on remote host. (templated) :type command: str - :param timeout: timeout (in seconds) for executing the command. + :param timeout: timeout (in seconds) for executing the command. The default is 10 seconds. :type timeout: int :param environment: a dict of shell environment variables. Note that the server will reject them silently if `AcceptEnv` is not set in SSH config.
