Skip to content

Commit f04dbc0

Browse files
authored
Merge pull request #133 from kolyshkin/context
Switch from x/net/context to context
2 parents c2ac4ec + 508ef95 commit f04dbc0

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@ language: go
22
sudo: required
33

44
go:
5-
- 1.8.x
65
- 1.9.x
76
- 1.10.x
8-
- 1.x
7+
- 1.11.x
98
- tip
109

1110
go_import_path: github.com/containerd/continuity

continuityfs/fuse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
package continuityfs
2020

2121
import (
22+
"context"
2223
"errors"
2324
"fmt"
2425
"io"
@@ -31,7 +32,6 @@ import (
3132
"github.com/containerd/continuity"
3233
"github.com/opencontainers/go-digest"
3334
"github.com/sirupsen/logrus"
34-
"golang.org/x/net/context"
3535
)
3636

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

0 commit comments

Comments
 (0)