Skip to content

Commit

Permalink
Merge pull request #691 from PortableProgrammer/PortableProgrammer-595
Browse files Browse the repository at this point in the history
DefaultUpdateTimeout is in `ns`, should be `s`
  • Loading branch information
rusenask authored Apr 11, 2023
2 parents dd2d232 + fb2bb89 commit 6755298
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion provider/helm3/implementer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package helm3
import (
"os"
"strings"
"time"

"helm.sh/helm/v3/pkg/chart"

Expand All @@ -19,7 +20,9 @@ import (
// * update to latest chart package
// * udpate the paramateres for the function

const DefaultUpdateTimeout = 300
// #595 - DefaultUpdateTimeout is in ns
// Per https://pkg.go.dev/helm.sh/helm/v3/pkg/action#Upgrade
const DefaultUpdateTimeout = 5 * time.Minute

// Implementer - generic helm implementer used to abstract actual implementation
type Implementer interface {
Expand Down

0 comments on commit 6755298

Please sign in to comment.