Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion internal/kube/securedaccess/route.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ func (o *RouteAccessType) ensureRoute(namespace string, route *routev1.Route) (e
log.Printf("Error on update for route %s/%s: %s", namespace, route.Name, err)
return err, nil
}
log.Printf("Route %s/%s updated successfully", namespace, route.Name)
o.manager.routes[key] = updated
return nil, updated
}
Expand Down
1 change: 0 additions & 1 deletion internal/qdr/port_mapping.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ type PortMapping struct {

func (p *PortMapping) GetPortForKey(key string) (int, error) {
if existing, ok := p.mappings[key]; ok {
log.Printf("Port %d already allocated for key %s", existing, key)
return existing, nil
}
allocated, err := p.pool.NextFreePort()
Expand Down