[OSS] Add boilerplate for proto files implementing BlockableQuery (#15554)
This commit is contained in:
parent
e72dd6254a
commit
450c8b9eff
|
@ -0,0 +1,3 @@
|
||||||
|
```release-note:bug
|
||||||
|
namespace: **(Enterprise Only)** Fix a bug that caused blocking queries during namespace replication to timeout
|
||||||
|
```
|
|
@ -595,6 +595,16 @@ func (msg *%[1]s) AllowStaleRead() bool {
|
||||||
return msg.%[2]s.AllowStaleRead()
|
return msg.%[2]s.AllowStaleRead()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// BlockingTimeout implements pool.BlockableQuery
|
||||||
|
func (msg *%[1]s) BlockingTimeout(maxQueryTime, defaultQueryTime time.Duration) time.Duration {
|
||||||
|
maxTime := structs.DurationFromProto(msg.%[2]s.GetMaxQueryTime())
|
||||||
|
o := structs.QueryOptions{
|
||||||
|
MaxQueryTime: maxTime,
|
||||||
|
MinQueryIndex: msg.%[2]s.GetMinQueryIndex(),
|
||||||
|
}
|
||||||
|
return o.BlockingTimeout(maxQueryTime, defaultQueryTime)
|
||||||
|
}
|
||||||
|
|
||||||
// HasTimedOut implements structs.RPCInfo
|
// HasTimedOut implements structs.RPCInfo
|
||||||
func (msg *%[1]s) HasTimedOut(start time.Time, rpcHoldTimeout time.Duration, a time.Duration, b time.Duration) (bool, error) {
|
func (msg *%[1]s) HasTimedOut(start time.Time, rpcHoldTimeout time.Duration, a time.Duration, b time.Duration) (bool, error) {
|
||||||
if msg == nil || msg.%[2]s == nil {
|
if msg == nil || msg.%[2]s == nil {
|
||||||
|
|
Loading…
Reference in New Issue