Skip to content

Commit

Permalink
Merge branch 'client_rpc_read_deadline' into fly
Browse files Browse the repository at this point in the history
  • Loading branch information
wjordan committed Dec 8, 2021
2 parents 2d137cd + 92525c4 commit a2c9b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/kvs_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a2c9b4c

Please sign in to comment.