consul: TombstoneReapRequestType -> TombstoneRequestType
This commit is contained in:
parent
8681d913ba
commit
0c9cbdb3d1
|
@ -23,7 +23,7 @@ const (
|
|||
KVSRequestType
|
||||
SessionRequestType
|
||||
ACLRequestType
|
||||
TombstoneReapRequestType
|
||||
TombstoneRequestType
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -532,14 +532,21 @@ type EventFireResponse struct {
|
|||
QueryMeta
|
||||
}
|
||||
|
||||
// TombstoneReapRequest is used to trigger a reaping of the tombstones
|
||||
type TombstoneReapRequest struct {
|
||||
type TombstoneOp string
|
||||
|
||||
const (
|
||||
TombstoneReap TombstoneOp = "reap"
|
||||
)
|
||||
|
||||
// TombstoneRequest is used to trigger a reaping of the tombstones
|
||||
type TombstoneRequest struct {
|
||||
Datacenter string
|
||||
Op TombstoneOp
|
||||
ReapIndex uint64
|
||||
WriteRequest
|
||||
}
|
||||
|
||||
func (r *TombstoneReapRequest) RequestDatacenter() string {
|
||||
func (r *TombstoneRequest) RequestDatacenter() string {
|
||||
return r.Datacenter
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue