From 059ea347e355de58fceb1bed6d8f5d0e6b5fa678 Mon Sep 17 00:00:00 2001 From: Sebastien Plisson Date: Thu, 10 May 2018 16:00:35 -0700 Subject: [PATCH] Show release content when timeout occur for install and rollback. For rollback show it only when debug flag is set. --- cmd/helm/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/install.go b/cmd/helm/install.go index 962ca3e15..7a36ddea4 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -539,7 +539,7 @@ func readFile(filePath, CertFile, KeyFile, CAFile string) ([]byte, error) { return ioutil.ReadFile(filePath) } - getter, err := getterConstructor(filePath, CertFile, KeyFile, CAFile) + getter, err := getterConstructor(filePath, "", "", "") if err != nil { return []byte{}, err }