Skip to content

Commit 6c6d09a

Browse files
committed
fix gosec false positive
1 parent 1f412f9 commit 6c6d09a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/camo/proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ func (p *Proxy) ServeHTTP(w http.ResponseWriter, req *http.Request) {
174174
mlog.Debugm("built outgoing request", httpReqToMlogMap(nreq))
175175
}
176176

177-
resp, err := p.client.Do(nreq)
177+
resp, err := p.client.Do(nreq) // #nosec G704
178178

179179
if resp != nil {
180180
defer func() {

0 commit comments

Comments
 (0)