From 63acacc2ca2e617e7f61de34c169e97f9f105033 Mon Sep 17 00:00:00 2001 From: Romaric Philogene Date: Wed, 4 Nov 2020 01:30:49 +0100 Subject: [PATCH] fix: change default helm timeout from 600s to 300s --- src/cmd/helm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/helm.rs b/src/cmd/helm.rs index c5642808..10b3a5b9 100644 --- a/src/cmd/helm.rs +++ b/src/cmd/helm.rs @@ -16,7 +16,7 @@ use crate::cmd::utilities::exec_with_envs_and_output; use crate::constants::{KUBECONFIG, TF_PLUGIN_CACHE_DIR}; use crate::error::{SimpleError, SimpleErrorKind}; -const HELM_DEFAULT_TIMEOUT_IN_SECONDS: u32 = 600; +const HELM_DEFAULT_TIMEOUT_IN_SECONDS: u32 = 300; pub enum Timeout { Default,