Skip to content

Commit

Permalink
Merge pull request #8 from jsafrane/imports
Browse files Browse the repository at this point in the history
Fixed imports after project rename
  • Loading branch information
jsafrane authored Nov 10, 2017
2 parents 4871dcd + 4d8b048 commit 351e3f4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cmd/csi-attacher/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ import (
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"

"github.com/kubernetes-csi/external-attacher-csi/pkg/connection"
"github.com/kubernetes-csi/external-attacher-csi/pkg/controller"
"github.com/kubernetes-csi/external-attacher/pkg/connection"
"github.com/kubernetes-csi/external-attacher/pkg/controller"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/csi_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
storagelister "k8s.io/client-go/listers/storage/v1"
"k8s.io/client-go/util/workqueue"

"github.com/kubernetes-csi/external-attacher-csi/pkg/connection"
"github.com/kubernetes-csi/external-attacher/pkg/connection"
)

// csiHandler is a handler that calls CSI to attach/detach volume.
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/csi_handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"fmt"
"testing"

"github.com/kubernetes-csi/external-attacher-csi/pkg/connection"
"github.com/kubernetes-csi/external-attacher/pkg/connection"

"k8s.io/api/core/v1"
storagev1 "k8s.io/api/storage/v1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/framework_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/container-storage-interface/spec/lib/go/csi"
"github.com/davecgh/go-spew/spew"
"github.com/golang/glog"
"github.com/kubernetes-csi/external-attacher-csi/pkg/connection"
"github.com/kubernetes-csi/external-attacher/pkg/connection"

"k8s.io/api/core/v1"
storagev1 "k8s.io/api/storage/v1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package controller

import (
"github.com/golang/glog"
"github.com/kubernetes-csi/external-attacher-csi/pkg/connection"
"github.com/kubernetes-csi/external-attacher/pkg/connection"
storagev1 "k8s.io/api/storage/v1"
"k8s.io/client-go/kubernetes"
)
Expand Down

0 comments on commit 351e3f4

Please sign in to comment.