File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ import (
49
49
"github.com/containerd/containerd/remotes/docker"
50
50
"github.com/containerd/containerd/remotes/docker/schema1"
51
51
"github.com/containerd/containerd/snapshots"
52
+ snproxy "github.com/containerd/containerd/snapshots/proxy"
52
53
"github.com/containerd/typeurl"
53
54
ptypes "github.com/gogo/protobuf/types"
54
55
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
@@ -467,7 +468,7 @@ func (c *Client) SnapshotService(snapshotterName string) snapshots.Snapshotter {
467
468
if c .snapshotters != nil {
468
469
return c .snapshotters [snapshotterName ]
469
470
}
470
- return NewSnapshotterFromClient (snapshotsapi .NewSnapshotsClient (c .conn ), snapshotterName )
471
+ return snproxy . NewSnapshotter (snapshotsapi .NewSnapshotsClient (c .conn ), snapshotterName )
471
472
}
472
473
473
474
// TaskService returns the underlying TasksClient
Original file line number Diff line number Diff line change 14
14
limitations under the License.
15
15
*/
16
16
17
- package containerd
17
+ package proxy
18
18
19
19
import (
20
20
"context"
@@ -28,9 +28,9 @@ import (
28
28
protobuftypes "github.com/gogo/protobuf/types"
29
29
)
30
30
31
- // NewSnapshotterFromClient returns a new Snapshotter which communicates
32
- // over a GRPC connection .
33
- func NewSnapshotterFromClient (client snapshotsapi.SnapshotsClient , snapshotterName string ) snapshots.Snapshotter {
31
+ // NewSnapshotter returns a new Snapshotter which communicates over a GRPC
32
+ // connection using the containerd snapshot GRPC API .
33
+ func NewSnapshotter (client snapshotsapi.SnapshotsClient , snapshotterName string ) snapshots.Snapshotter {
34
34
return & remoteSnapshotter {
35
35
client : client ,
36
36
snapshotterName : snapshotterName ,
You can’t perform that action at this time.
0 commit comments