mirror of
https://github.com/ceph/go-ceph
synced 2024-12-22 06:10:09 +00:00
87041ee7d8
Signed-off-by: Sven Anderson <sven@redhat.com>
12 lines
283 B
Go
12 lines
283 B
Go
package admin
|
|
|
|
// GetFailure returns details about the CloneStatus when in CloneFailed state.
|
|
//
|
|
// Similar To:
|
|
//
|
|
// Reading the .failure object from the JSON returned by "ceph fs subvolume
|
|
// snapshot clone"
|
|
func (cs *CloneStatus) GetFailure() *CloneFailure {
|
|
return cs.failure
|
|
}
|