Skip to content

Commit

Permalink
Fix go-vet issue with agent code
Browse files Browse the repository at this point in the history
Co-authored-by: iknite <[email protected]
  • Loading branch information
Jose Luis Lucas authored and iknite committed Dec 18, 2018
1 parent 5b7dcb1 commit 4cc00cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gossip/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,11 +252,11 @@ func (a *Agent) Shutdown() error {
return nil
}

func (a Agent) Memberlist() *memberlist.Memberlist {
func (a *Agent) Memberlist() *memberlist.Memberlist {
return a.memberlist
}

func (a Agent) Broadcasts() *memberlist.TransmitLimitedQueue {
func (a *Agent) Broadcasts() *memberlist.TransmitLimitedQueue {
return a.broadcasts
}

Expand Down

0 comments on commit 4cc00cb

Please sign in to comment.