From 0c55dbfa063da39823bf6488931a5d51dbbf2a4b Mon Sep 17 00:00:00 2001 From: William Poussier Date: Tue, 2 May 2023 16:28:43 +0200 Subject: [PATCH] docs(plugins): fix default SSH command timeout (#440) Signed-off-by: William Poussier --- pkg/plugins/builtin/ssh/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugins/builtin/ssh/README.md b/pkg/plugins/builtin/ssh/README.md index 0951248a..f49d7767 100644 --- a/pkg/plugins/builtin/ssh/README.md +++ b/pkg/plugins/builtin/ssh/README.md @@ -18,7 +18,7 @@ The step will be considered successful if the script returns exit code 0, otherw | `ssh_key` | private ssh key, preferably retrieved from {{.config}} | | `ssh_key_passphrase` | passphrase for the key, if any | | `exit_codes_unrecoverable` | a list of non-zero exit codes (1, 2, 3, ...) or ranges (1-10, ...) which should be considered unrecoverable and halt execution ; these will be returned to the main engine as a `CLIENT_ERROR` | -| `timeout` | defines the maximum duration of the SSH session (connection time not included). Default to `3600s` (5 minutes). | +| `timeout` | defines the maximum duration of the SSH session (connection time not included). Default to `5m`. | ## Example