Skip to content

Commit

Permalink
Merge pull request #133 from kolyshkin/context
Browse files Browse the repository at this point in the history
Switch from x/net/context to context
  • Loading branch information
estesp committed Sep 18, 2018
2 parents c2ac4ec + 508ef95 commit f04dbc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ language: go
sudo: required

go:
- 1.8.x
- 1.9.x
- 1.10.x
- 1.x
- 1.11.x
- tip

go_import_path: github.com/containerd/continuity
Expand Down
2 changes: 1 addition & 1 deletion continuityfs/fuse.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
package continuityfs

import (
"context"
"errors"
"fmt"
"io"
Expand All @@ -31,7 +32,6 @@ import (
"github.com/containerd/continuity"
"github.com/opencontainers/go-digest"
"github.com/sirupsen/logrus"
"golang.org/x/net/context"
)

// File represents any file type (non directory) in the filesystem
Expand Down

0 comments on commit f04dbc0

Please sign in to comment.