We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffd15fd commit 5829540Copy full SHA for 5829540
pkg/distribution/internal/bundle/unpack.go
@@ -198,10 +198,6 @@ func unpackSafetensors(bundle *Bundle, mdl types.Model) error {
198
func unpackConfigArchive(bundle *Bundle, mdl types.Model) error {
199
archivePath, err := mdl.ConfigArchivePath()
200
if err != nil {
201
- // Only suppress "not found" error, propagate others
202
- if os.IsNotExist(err) {
203
- return nil // no config archive
204
- }
205
return fmt.Errorf("get config archive path: %w", err)
206
}
207
0 commit comments