mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-30 17:53:21 -04:00 
			
		
		
		
	lint: enable prealloc (#7493)
This commit is contained in:
		| @@ -224,8 +224,10 @@ func (k *Kubernetes) ExternalReverse(ip string) ([]msg.Service, error) { | ||||
| } | ||||
|  | ||||
| func (k *Kubernetes) serviceRecordForExternalIP(ip string) []msg.Service { | ||||
| 	var svcs []msg.Service | ||||
| 	for _, service := range k.APIConn.SvcExtIndexReverse(ip) { | ||||
| 	svcList := k.APIConn.SvcExtIndexReverse(ip) | ||||
| 	svcLen := len(svcList) | ||||
| 	svcs := make([]msg.Service, 0, svcLen) | ||||
| 	for _, service := range svcList { | ||||
| 		if len(k.Namespaces) > 0 && !k.namespaceExposed(service.Namespace) { | ||||
| 			continue | ||||
| 		} | ||||
|   | ||||
| @@ -257,8 +257,7 @@ func emitAddressRecord(c chan<- []dns.RR, s msg.Service) string { | ||||
| // calcSRVWeight borrows the logic implemented in plugin.SRV for dynamically | ||||
| // calculating the srv weight and priority | ||||
| func calcSRVWeight(numservices int) uint16 { | ||||
| 	var services []msg.Service | ||||
|  | ||||
| 	services := make([]msg.Service, 0, numservices) | ||||
| 	for range numservices { | ||||
| 		services = append(services, msg.Service{}) | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user