Browse Source

consul: TombstoneReapRequestType -> TombstoneRequestType

pull/577/head
Armon Dadgar 10 years ago
parent
commit
bcb10cff11
  1. 15
      consul/structs/structs.go

15
consul/structs/structs.go

@ -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…
Cancel
Save