Merge pull request #41215 from cpuguy83/better_plugin_errors

Add more error details on plugin get
This commit is contained in:
Akihiro Suda 2021-10-24 12:37:07 +09:00 committed by GitHub
commit 4283e93e64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,6 +24,7 @@ package plugins // import "github.com/docker/docker/pkg/plugins"
import (
"errors"
"fmt"
"sync"
"time"
@ -265,7 +266,7 @@ func Get(name, imp string) (*Plugin, error) {
logrus.Debugf("%s implements: %s", name, imp)
return pl, nil
}
return nil, ErrNotImplements
return nil, fmt.Errorf("%w: plugin=%q, requested implementation=%q", ErrNotImplements, name, imp)
}
// Handle adds the specified function to the extpointHandlers.