Skip to content

Commit

Permalink
Merge pull request #5430 from HashedDan/server-typo
Browse files Browse the repository at this point in the history
server: inconsistent receiver notation corrected
  • Loading branch information
notnoop authored Mar 20, 2019
2 parents a0d025e + 2678407 commit ba5078f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nomad/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -1341,8 +1341,8 @@ func (s *Server) Join(addrs []string) (int, error) {
}

// LocalMember is used to return the local node
func (c *Server) LocalMember() serf.Member {
return c.serf.LocalMember()
func (s *Server) LocalMember() serf.Member {
return s.serf.LocalMember()
}

// Members is used to return the members of the serf cluster
Expand Down

0 comments on commit ba5078f

Please sign in to comment.