Fix KVSGet method to handle QueryOptions properly (#13344)

This commit is contained in:
Chris S. Kim 2022-06-02 12:26:18 -04:00 committed by GitHub
parent 6ef38eaea7
commit 8a7dfbaa7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

3
.changelog/13344.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:bug
kvs: Fixed a bug where query options were not being applied to KVS.Get RPC operations.
```

View File

@ -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)