Skip to content

Commit

Permalink
remove empty assignment as required in code review
Browse files Browse the repository at this point in the history
  • Loading branch information
birdayz committed Feb 7, 2019
1 parent 756d62b commit ed8fc87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ func (ca *clusterAdmin) ListConsumerGroups() (allGroups map[string]string, err e
wg.Add(1)
go func(b *Broker, conf *Config) {
defer wg.Done()
_ = b.Open(conf) // Ensure that broker is opened
b.Open(conf) // Ensure that broker is opened

response, err := b.ListGroups(&ListGroupsRequest{})
if err != nil {
Expand Down

0 comments on commit ed8fc87

Please sign in to comment.