Skip to content
This repository was archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Merge pull request #478 from avielb/patch-1
Browse files Browse the repository at this point in the history
Fix: longer timeout for annotator
  • Loading branch information
hiddeco authored Jul 20, 2020
2 parents 8d35598 + 617cd68 commit ba8651e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/release/annotator.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func annotateResources(rel *helm.Release, resourceID resource.ID) error {

// The timeout is set to a high value as it may take some time
// to annotate large umbrella charts.
ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second)
defer cancel()

cmd := exec.CommandContext(ctx, "kubectl", args...)
Expand Down

0 comments on commit ba8651e

Please sign in to comment.