Skip to content

Commit ffa3997

Browse files
AkihiroSudacrosbymichael
authored andcommitted
update containerd
Signed-off-by: Akihiro Suda <[email protected]>
1 parent a7fbd55 commit ffa3997

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

aufs.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func (o *snapshotter) Usage(ctx context.Context, key string) (snapshots.Usage, e
117117
t.Rollback() // transaction no longer needed at this point.
118118

119119
if info.Kind == snapshots.KindActive {
120-
du, err := fs.DiskUsage(upperPath)
120+
du, err := fs.DiskUsage(ctx, upperPath)
121121
if err != nil {
122122
// TODO(stevvooe): Consider not reporting an error in this case.
123123
return snapshots.Usage{}, err
@@ -174,7 +174,7 @@ func (o *snapshotter) Commit(ctx context.Context, name, key string, opts ...snap
174174
return err
175175
}
176176

177-
usage, err := fs.DiskUsage(o.upperPath(id))
177+
usage, err := fs.DiskUsage(ctx, o.upperPath(id))
178178
if err != nil {
179179
return err
180180
}

aufs_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"context"
55
"testing"
66

7+
"github.com/containerd/containerd/pkg/testutil"
78
"github.com/containerd/containerd/snapshots"
89
"github.com/containerd/containerd/snapshots/testsuite"
9-
"github.com/containerd/containerd/testutil"
1010
)
1111

1212
func TestAufs(t *testing.T) {

0 commit comments

Comments
 (0)