mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-30 17:53:21 -04:00 
			
		
		
		
	perf: avoid string concatenation in loops (#7572)
* perf: avoid string concatenation in loops Apply perfpsrint linter Signed-off-by: Philippe Antoine <contact@catenacyber.fr> * ci: enable perfsprint Signed-off-by: Philippe Antoine <contact@catenacyber.fr> --------- Signed-off-by: Philippe Antoine <contact@catenacyber.fr>
This commit is contained in:
		| @@ -29,7 +29,7 @@ func NewRequest(method, url string, m *dns.Msg) (*http.Request, error) { | ||||
| 	} | ||||
|  | ||||
| 	if !strings.HasPrefix(url, "http://") && !strings.HasPrefix(url, "https://") { | ||||
| 		url = fmt.Sprintf("https://%s", url) | ||||
| 		url = "https://" + url | ||||
| 	} | ||||
|  | ||||
| 	switch method { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user