mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
a66012a5d4
Bumps [github.com/ceph/go-ceph](https://github.com/ceph/go-ceph) from 0.11.0 to 0.12.0. - [Release notes](https://github.com/ceph/go-ceph/releases) - [Changelog](https://github.com/ceph/go-ceph/blob/master/docs/release-process.md) - [Commits](https://github.com/ceph/go-ceph/compare/v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: github.com/ceph/go-ceph dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
651 B
Go
26 lines
651 B
Go
//go:build !luminous && !mimic
|
|
// +build !luminous,!mimic
|
|
|
|
package admin
|
|
|
|
import (
|
|
"github.com/ceph/go-ceph/internal/commands"
|
|
)
|
|
|
|
var (
|
|
// ErrStatusNotEmpty is an alias for commands.ErrStatusNotEmpty
|
|
ErrStatusNotEmpty = commands.ErrStatusNotEmpty
|
|
// ErrBodyNotEmpty is an alias for commands.ErrBodyNotEmpty
|
|
ErrBodyNotEmpty = commands.ErrBodyNotEmpty
|
|
)
|
|
|
|
type response = commands.Response
|
|
|
|
// NotImplementedError is an alias for commands.NotImplementedError.
|
|
type NotImplementedError = commands.NotImplementedError
|
|
|
|
// newResponse returns a response.
|
|
func newResponse(b []byte, s string, e error) response {
|
|
return commands.NewResponse(b, s, e)
|
|
}
|