Skip to content

Commit 053429c

Browse files
Merge pull request #2231 from giuseppe/fallback-to-ordinary-layer-pull-on-notlinux
chunked: use fallback mechanism on non-linux platforms
2 parents 80d3c0e + 87f7d52 commit 053429c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/chunked/storage_unsupported.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ import (
1313

1414
// GetDiffer returns a differ than can be used with ApplyDiffWithDiffer.
1515
func GetDiffer(ctx context.Context, store storage.Store, blobDigest digest.Digest, blobSize int64, annotations map[string]string, iss ImageSourceSeekable) (graphdriver.Differ, error) {
16-
return nil, errors.New("format not supported on this system")
16+
return nil, newErrFallbackToOrdinaryLayerDownload(errors.New("format not supported on this system"))
1717
}

0 commit comments

Comments
 (0)