Skip to content

Commit

Permalink
fix: increase timeouts
Browse files Browse the repository at this point in the history
Signed-off-by: Matej Vasek <mvasek@redhat.com>
  • Loading branch information
matejvasek committed Jan 19, 2024
1 parent 4d58920 commit adb68e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/knative/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

const (
DefaultWaitingTimeout = 120 * time.Second
DefaultWaitingTimeout = 300 * time.Second
DefaultErrorWindowTimeout = 2 * time.Second
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/knative/remover.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"knative.dev/func/pkg/k8s"
)

const RemoveTimeout = 120 * time.Second
const RemoveTimeout = 300 * time.Second

func NewRemover(namespaceOverride string, verbose bool) *Remover {
return &Remover{
Expand Down
2 changes: 1 addition & 1 deletion pkg/pipelines/tekton/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

const (
DefaultWaitingTimeout = 120 * time.Second
DefaultWaitingTimeout = 300 * time.Second
)

func NewTektonClientAndResolvedNamespace(defaultNamespace string) (*v1beta1.TektonV1beta1Client, string, error) {
Expand Down

0 comments on commit adb68e7

Please sign in to comment.