Merge pull request #44021 from thaJeztah/client_remove_deprecated_errorutils
client: remove deprecated error-utilities
This commit is contained in:
commit
52f8a4283e
2 changed files with 1 additions and 26 deletions
|
@ -58,31 +58,6 @@ func (e objectNotFoundError) Error() string {
|
||||||
return fmt.Sprintf("Error: No such %s: %s", e.object, e.id)
|
return fmt.Sprintf("Error: No such %s: %s", e.object, e.id)
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsErrUnauthorized returns true if the error is caused
|
|
||||||
// when a remote registry authentication fails
|
|
||||||
//
|
|
||||||
// Deprecated: use errdefs.IsUnauthorized
|
|
||||||
func IsErrUnauthorized(err error) bool {
|
|
||||||
return errdefs.IsUnauthorized(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
type pluginPermissionDenied struct {
|
|
||||||
name string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e pluginPermissionDenied) Error() string {
|
|
||||||
return "Permission denied while installing plugin " + e.name
|
|
||||||
}
|
|
||||||
|
|
||||||
// IsErrNotImplemented returns true if the error is a NotImplemented error.
|
|
||||||
// This is returned by the API when a requested feature has not been
|
|
||||||
// implemented.
|
|
||||||
//
|
|
||||||
// Deprecated: use errdefs.IsNotImplemented
|
|
||||||
func IsErrNotImplemented(err error) bool {
|
|
||||||
return errdefs.IsNotImplemented(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewVersionError returns an error if the APIVersion required
|
// NewVersionError returns an error if the APIVersion required
|
||||||
// if less than the current supported version
|
// if less than the current supported version
|
||||||
func (cli *Client) NewVersionError(APIrequired, feature string) error {
|
func (cli *Client) NewVersionError(APIrequired, feature string) error {
|
||||||
|
|
|
@ -107,7 +107,7 @@ func (cli *Client) checkPluginPermissions(ctx context.Context, query url.Values,
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if !accept {
|
if !accept {
|
||||||
return nil, pluginPermissionDenied{options.RemoteRef}
|
return nil, errors.Errorf("permission denied while installing plugin %s", options.RemoteRef)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return privileges, nil
|
return privileges, nil
|
||||||
|
|
Loading…
Reference in a new issue