Skip to content

Commit

Permalink
changelog and feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dadgar committed Sep 14, 2017
1 parent f23ac5f commit 98c47c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ BUG FIXES:
* core: *Fix restoration of stopped periodic jobs [GH-3201]
* api: Fix search handling of jobs with more than four hyphens and case were
length could cause lookup error [GH-3203]
* client: Fix lock contention that could cause a node to miss a heartbeat and
be marked as down [GH-3195]

## 0.6.3 (September 11, 2017)

Expand Down
3 changes: 1 addition & 2 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,7 @@ func (c *Client) Leave() error {

// Datacenter returns the datacenter for the given client
func (c *Client) Datacenter() string {
dc := c.config.Node.Datacenter
return dc
return c.config.Node.Datacenter
}

// Region returns the region for the given client
Expand Down

0 comments on commit 98c47c7

Please sign in to comment.