Skip to content

Commit

Permalink
cleanup vendor
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
  • Loading branch information
jessfraz committed Sep 25, 2018
1 parent 671aaaa commit 0c60e70
Show file tree
Hide file tree
Showing 1,475 changed files with 6,450 additions and 273,993 deletions.
85 changes: 43 additions & 42 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@
branch = "master"

[[override]]
name = "github.com/boltdb/bolt"
#source = "github.com/coreos/bbolt"
name = "go.etcd.io/bbolt"
branch = "master"

[[constraint]]
Expand Down
4 changes: 2 additions & 2 deletions client/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/moby/buildkit/frontend/dockerfile/builder"
"github.com/moby/buildkit/frontend/gateway"
"github.com/moby/buildkit/frontend/gateway/forwarder"
"github.com/moby/buildkit/solver/boltdbcachestorage"
"github.com/moby/buildkit/solver/bboltcachestorage"
"github.com/moby/buildkit/worker"
"github.com/moby/buildkit/worker/base"
)
Expand Down Expand Up @@ -43,7 +43,7 @@ func (c *Client) createController() error {
frontends["gateway.v0"] = gateway.NewGatewayFrontend(wc)

// Create the cache storage
cacheStorage, err := boltdbcachestorage.NewStore(filepath.Join(c.root, "cache.db"))
cacheStorage, err := bboltcachestorage.NewStore(filepath.Join(c.root, "cache.db"))
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion client/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import (
"path/filepath"
"strings"

"github.com/boltdb/bolt"
"github.com/containerd/containerd/content/local"
"github.com/containerd/containerd/images"
ctdmetadata "github.com/containerd/containerd/metadata"
"github.com/containerd/containerd/platforms"
bolt "go.etcd.io/bbolt"
)

// ListedImage represents an image structure returuned from ListImages.
Expand Down
2 changes: 1 addition & 1 deletion client/workeropt.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (
"path/filepath"
"time"

"github.com/boltdb/bolt"
"github.com/containerd/containerd/content/local"
"github.com/containerd/containerd/diff/apply"
"github.com/containerd/containerd/diff/walking"
Expand All @@ -27,6 +26,7 @@ import (
specs "github.com/opencontainers/image-spec/specs-go/v1"
"github.com/opencontainers/runc/libcontainer/system"
"github.com/sirupsen/logrus"
bolt "go.etcd.io/bbolt"
)

// createWorkerOpt creates a base.WorkerOpt to be used for a new worker.
Expand Down
12 changes: 0 additions & 12 deletions vendor/github.com/Azure/go-ansiterm/README.md

This file was deleted.

Loading

0 comments on commit 0c60e70

Please sign in to comment.