Skip to content

Commit

Permalink
fixed compilation issues arising from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
TrekkieCoder committed Jan 1, 2025
1 parent fcc1570 commit ad8f286
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/agent/manager/loadbalancer/loadbalancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -2095,7 +2095,7 @@ func (m *Manager) DiscoverLoxiLBServices(loxiLBAliveCh chan *api.LoxiClient, lox
}
}
for _, v := range m.LoxiClients.Clients {
if v.Host == ip.String() {
if v.Host == ip {
found = true
}
}
Expand Down Expand Up @@ -2145,7 +2145,7 @@ func (m *Manager) DiscoverLoxiLBPeerServices(loxiLBAliveCh chan *api.LoxiClient,
for _, ip := range ips {
found := false
for _, v := range m.LoxiPeerClients.Clients {
if v.Host == ip.String() {
if v.Host == ip {
found = true
}
}
Expand Down

0 comments on commit ad8f286

Please sign in to comment.