Skip to content

Commit 28f521e

Browse files
fix merge issue
1 parent 433f5f3 commit 28f521e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ func (r *Runner) Run(ctx context.Context, patterns []string) error {
273273
if err != nil {
274274
return fmt.Errorf("could not start http proxy server: %w", err)
275275
}
276-
r.config.HTTPProxyURL = "https://" + httpProxyServer.Address
276+
r.config.HTTPProxyURL = "http://" + httpProxyServer.Address
277277
r.log.Info("Started HTTP CONNECT proxy server", "address", httpProxyServer.Address)
278278
defer httpProxyServer.Close()
279279
}

0 commit comments

Comments
 (0)