Skip to content

Commit

Permalink
Merge pull request #2231 from giuseppe/fallback-to-ordinary-layer-pul…
Browse files Browse the repository at this point in the history
…l-on-notlinux

chunked: use fallback mechanism on non-linux platforms
  • Loading branch information
openshift-merge-bot[bot] authored Jan 27, 2025
2 parents 80d3c0e + 87f7d52 commit 053429c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/chunked/storage_unsupported.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ import (

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

0 comments on commit 053429c

Please sign in to comment.