mirror of
https://github.com/status-im/consul.git
synced 2025-02-16 15:47:21 +00:00
Fix KVSGet method to handle QueryOptions properly (#13344)
This commit is contained in:
parent
74ca6406ea
commit
73af9e9737
3
.changelog/13344.txt
Normal file
3
.changelog/13344.txt
Normal file
@ -0,0 +1,3 @@
|
||||
```release-note:bug
|
||||
kvs: Fixed a bug where query options were not being applied to KVS.Get RPC operations.
|
||||
```
|
@ -69,7 +69,7 @@ func (s *HTTPHandlers) KVSGet(resp http.ResponseWriter, req *http.Request, args
|
||||
|
||||
// Make the RPC
|
||||
var out structs.IndexedDirEntries
|
||||
if err := s.agent.RPC(method, &args, &out); err != nil {
|
||||
if err := s.agent.RPC(method, args, &out); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
setMeta(resp, &out.QueryMeta)
|
||||
|
Loading…
x
Reference in New Issue
Block a user