fix: change default helm timeout from 600s to 300s

This commit is contained in:
Romaric Philogene
2020-11-04 01:30:49 +01:00
parent f5a758c400
commit 63acacc2ca

View File

@@ -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<T> {
Default,