Skip to content

Commit

Permalink
fix(zeroconf): do not override seed list
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed Jul 5, 2023
1 parent 7aedf98 commit 453fca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/wishlist/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ func getSeedEndpoints(ctx context.Context) ([]*wishlist.Endpoint, error) {
if err != nil {
return nil, err //nolint: wrapcheck
}
seed = endpoints
seed = append(seed, endpoints...)
}
for _, domain := range srvDomains {
endpoints, err := srv.Endpoints(ctx, domain)
Expand Down

0 comments on commit 453fca8

Please sign in to comment.