Skip to content

Commit

Permalink
Fix import paths in controller
Browse files Browse the repository at this point in the history
  • Loading branch information
kuujo committed Oct 28, 2022
1 parent 2fac65f commit b06c9a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions controller/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ module github.com/atomix/consensus-storage/controller
go 1.19

require (
github.com/atomix/consensus-storage/node v0.12.0
github.com/atomix/consensus-storage/node v0.12.1-0.20221028092338-2fac65f8e0b4
github.com/atomix/runtime/controller v0.6.0
github.com/atomix/runtime/sdk v0.7.2
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/go-logr/logr v1.2.0
github.com/gogo/protobuf v1.3.2
github.com/spf13/cobra v1.4.0
google.golang.org/grpc v1.46.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
k8s.io/api v0.24.0
k8s.io/apimachinery v0.24.0
k8s.io/client-go v0.24.0
Expand Down Expand Up @@ -98,6 +97,7 @@ require (
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
k8s.io/component-base v0.24.0 // indirect
k8s.io/klog/v2 v2.60.1 // indirect
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
Expand Down
4 changes: 2 additions & 2 deletions controller/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ github.com/armon/go-metrics v0.3.10 h1:FR+drcQStOe+32sYyJYyZ7FIdgoGGBnwLl+flodp8
github.com/armon/go-metrics v0.3.10/go.mod h1:4O98XIr/9W0sxpJ8UaYkvjk10Iff7SnFrb4QAOwNTFc=
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
github.com/atomix/consensus-storage/node v0.12.0 h1:eryyJWEL1dbYfYd14sEKSoe6WNmP7sTui55DlF3xHsI=
github.com/atomix/consensus-storage/node v0.12.0/go.mod h1:xbWF0cRKheO8QK5ElseuEcANvZEUWEkcCk5wkpO1spc=
github.com/atomix/consensus-storage/node v0.12.1-0.20221028092338-2fac65f8e0b4 h1:UKE4BAtvekp8tEblbYQSAGrNBx5aKgBmejLvA24ZaLI=
github.com/atomix/consensus-storage/node v0.12.1-0.20221028092338-2fac65f8e0b4/go.mod h1:PiTZQgZh6e+mSBDu9fiJvCy1XtQe08vel9hWPfZtPsI=
github.com/atomix/runtime/controller v0.6.0 h1:K8e/9pt4uneOGgNhh4+tkaoPYf8xx7QB6oKNnNAm71E=
github.com/atomix/runtime/controller v0.6.0/go.mod h1:8UIKE/2LeuETaEYOZNSqEZWzA0TgDGeK5QYeZ/yoa20=
github.com/atomix/runtime/sdk v0.7.2 h1:P4DNrnlwGYrF4jC892ugL1Cn5TGTlQoPhF05lhIEjXs=
Expand Down
2 changes: 1 addition & 1 deletion controller/pkg/apis/addtoscheme_consensus_v1beta1.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package apis

import (
consensusv1beta1 "github.com/atomix/consensus-storage/controller/pkg/apis/consensus-storage/v1beta1"
consensusv1beta1 "github.com/atomix/consensus-storage/controller/pkg/apis/consensus/v1beta1"
)

func init() {
Expand Down

0 comments on commit b06c9a6

Please sign in to comment.