Skip to content

Commit

Permalink
upgrade to latest dependencies (#390)
Browse files Browse the repository at this point in the history
bumping knative.dev/pkg 2fdd5f2...38af013:
  > 38af013 Initialize prefix remapping map to avoid panic (# 2459)

Signed-off-by: Knative Automation <automation@knative.team>
  • Loading branch information
knative-automation committed Mar 11, 2022
1 parent deac2d6 commit 1fce8d0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ require (
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65
knative.dev/eventing v0.30.0
knative.dev/hack v0.0.0-20220224013837-e1785985d364
knative.dev/pkg v0.0.0-20220301181942-2fdd5f232e77
knative.dev/pkg v0.0.0-20220310195447-38af013b30ff
)

require (
Expand Down
3 changes: 2 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2194,8 +2194,9 @@ knative.dev/hack/schema v0.0.0-20220224013837-e1785985d364/go.mod h1:ffjwmdcrH5v
knative.dev/networking v0.0.0-20220302134042-e8b2eb995165 h1:mkUDPTqfRPNhsUTVOH53IOx0Utzlfwl48t8lLc1bfL4=
knative.dev/networking v0.0.0-20220302134042-e8b2eb995165/go.mod h1:EdQTSLl8BDeLLrC8pymGOiPMRAknFg+7oRO6MMUts94=
knative.dev/pkg v0.0.0-20220228195509-fe264173447b/go.mod h1:SsH9J6Gz+CvrHmoL0TELJXmMmohqKSQ5bpJvCv+1+ZI=
knative.dev/pkg v0.0.0-20220301181942-2fdd5f232e77 h1:eIH936a0/1X/XQOMN9+O3fw9spGvOJiMVKsBuu8J47U=
knative.dev/pkg v0.0.0-20220301181942-2fdd5f232e77/go.mod h1:SsH9J6Gz+CvrHmoL0TELJXmMmohqKSQ5bpJvCv+1+ZI=
knative.dev/pkg v0.0.0-20220310195447-38af013b30ff h1:KrKiBc0dMUq/+Fd0M3J86RdNOViEQYm/rOEHTCPzqR4=
knative.dev/pkg v0.0.0-20220310195447-38af013b30ff/go.mod h1:SsH9J6Gz+CvrHmoL0TELJXmMmohqKSQ5bpJvCv+1+ZI=
knative.dev/reconciler-test v0.0.0-20220303141206-84821d26ed1f/go.mod h1:K5pZJkenonlT9o+MtRaNsBP7BazGwjhqYPepuV1zdnU=
knative.dev/serving v0.30.0 h1:i+2Jz2UHVTKQjsBz2lgTaNHb0aLDhclysaGjODVIS5k=
knative.dev/serving v0.30.0/go.mod h1:UwsKXK4LnkM+e8/hhgJq2LtyzmzHD6UsrGPFe5JOBS8=
Expand Down
9 changes: 5 additions & 4 deletions vendor/knative.dev/pkg/leaderelection/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,11 @@ func (c *Config) GetComponentConfig(name string) ComponentConfig {

func defaultConfig() *Config {
return &Config{
Buckets: 1,
LeaseDuration: 60 * time.Second,
RenewDeadline: 40 * time.Second,
RetryPeriod: 10 * time.Second,
Buckets: 1,
LeaseDuration: 60 * time.Second,
RenewDeadline: 40 * time.Second,
RetryPeriod: 10 * time.Second,
LeaseNamesPrefixMapping: make(map[string]string),
}
}

Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,7 @@ knative.dev/hack
## explicit; go 1.16
knative.dev/networking/pkg/apis/networking
knative.dev/networking/pkg/apis/networking/v1alpha1
# knative.dev/pkg v0.0.0-20220301181942-2fdd5f232e77
# knative.dev/pkg v0.0.0-20220310195447-38af013b30ff
## explicit; go 1.17
knative.dev/pkg/apis
knative.dev/pkg/apis/duck
Expand Down

0 comments on commit 1fce8d0

Please sign in to comment.