Skip to content

Commit 793d631

Browse files
Open() is called in the pullthrough code path and needs retry
Added tests
1 parent 4c7a595 commit 793d631

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

pkg/image/importer/client.go

+10
Original file line numberDiff line numberDiff line change
@@ -407,3 +407,13 @@ func (r retryBlobStore) ServeBlob(ctx context.Context, w http.ResponseWriter, re
407407
}
408408
}
409409
}
410+
411+
func (r retryBlobStore) Open(ctx context.Context, dgst digest.Digest) (distribution.ReadSeekCloser, error) {
412+
for {
413+
if rsc, err := r.BlobStore.Open(ctx, dgst); r.repo.shouldRetry(err) {
414+
continue
415+
} else {
416+
return rsc, err
417+
}
418+
}
419+
}

pkg/image/importer/client_test.go

+10-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func (r *mockRepository) GetByTag(tag string, options ...distribution.ManifestSe
7575
type mockBlobStore struct {
7676
distribution.BlobStore
7777

78-
statErr, serveErr error
78+
statErr, serveErr, openErr error
7979
}
8080

8181
func (r *mockBlobStore) Stat(ctx context.Context, dgst digest.Digest) (distribution.Descriptor, error) {
@@ -86,6 +86,10 @@ func (r *mockBlobStore) ServeBlob(ctx context.Context, w http.ResponseWriter, re
8686
return r.serveErr
8787
}
8888

89+
func (r *mockBlobStore) Open(ctx context.Context, dgst digest.Digest) (distribution.ReadSeekCloser, error) {
90+
return nil, r.openErr
91+
}
92+
8993
func TestSchema1ToImage(t *testing.T) {
9094
m := &schema1.SignedManifest{}
9195
if err := json.Unmarshal([]byte(etcdManifest), m); err != nil {
@@ -284,6 +288,7 @@ func TestRetryFailure(t *testing.T) {
284288
blobs: &mockBlobStore{
285289
serveErr: errcode.ErrorCodeUnauthorized,
286290
statErr: errcode.ErrorCodeUnauthorized,
291+
openErr: errcode.ErrorCodeUnauthorized,
287292
},
288293
}
289294
r = NewRetryRepository(repo, 4, 0).(*retryRepository)
@@ -326,4 +331,8 @@ func TestRetryFailure(t *testing.T) {
326331
if err := b.ServeBlob(nil, nil, nil, digest.Digest("foo")); err != repo.getErr || r.retries != 0 {
327332
t.Fatalf("unexpected: %v %v %#v", m, err, r)
328333
}
334+
r.retries = 2
335+
if _, err := b.Open(nil, digest.Digest("foo")); err != repo.getErr || r.retries != 0 {
336+
t.Fatalf("unexpected: %v %v %#v", m, err, r)
337+
}
329338
}

0 commit comments

Comments
 (0)