Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
sort results from etcd so keys are always in the same order
  • Loading branch information
Bill Hathaway committed Jul 30, 2014
commit 7d77798b61030eb876f9416eed9b2843e432882e
2 changes: 1 addition & 1 deletion backends/etcd/etcdutil/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func NewEtcdClient(machines []string, cert, key string, caCert string) (*Client,
func (c *Client) GetValues(keys []string) (map[string]interface{}, error) {
vars := make(map[string]interface{})
for _, key := range keys {
resp, err := c.client.Get(key, false, true)
resp, err := c.client.Get(key, true, true)
if err != nil {
return vars, err
}
Expand Down