mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
0d1c2aa983
This commit update go-ceph to v0.13.0 and change CEPH_VERSION in build.env to pacific. Signed-off-by: Rakshith R <rar@redhat.com>
23 lines
592 B
Go
23 lines
592 B
Go
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)
|
|
}
|