File tree 4 files changed +8
-6
lines changed
4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ import (
38
38
versionservice "github.com/containerd/containerd/api/services/version/v1"
39
39
"github.com/containerd/containerd/containers"
40
40
"github.com/containerd/containerd/content"
41
+ contentproxy "github.com/containerd/containerd/content/proxy"
41
42
"github.com/containerd/containerd/defaults"
42
43
"github.com/containerd/containerd/dialer"
43
44
"github.com/containerd/containerd/errdefs"
@@ -460,7 +461,7 @@ func (c *Client) ContentStore() content.Store {
460
461
if c .contentStore != nil {
461
462
return c .contentStore
462
463
}
463
- return NewContentStoreFromClient (contentapi .NewContentClient (c .conn ))
464
+ return contentproxy . NewContentStore (contentapi .NewContentClient (c .conn ))
464
465
}
465
466
466
467
// SnapshotService returns the underlying snapshotter for the provided snapshotter name
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"
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"
@@ -31,8 +31,9 @@ type remoteContent struct {
31
31
client contentapi.ContentClient
32
32
}
33
33
34
- // NewContentStoreFromClient returns a new content store
35
- func NewContentStoreFromClient (client contentapi.ContentClient ) content.Store {
34
+ // NewContentStore returns a new content store which communicates over a GRPC
35
+ // connection using the containerd content GRPC API.
36
+ func NewContentStore (client contentapi.ContentClient ) content.Store {
36
37
return & remoteContent {
37
38
client : client ,
38
39
}
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"
You can’t perform that action at this time.
0 commit comments