Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 5a90756

Browse files
fix https_proxy issue
1 parent fee00c6 commit 5a90756

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plugins/filters/proxy/proxy.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ import (
1212

1313
const (
1414
pluginType = "filters/proxy"
15-
httpProxy = "http_proxy"
16-
httpsProxy = "http_proxy"
17-
noProxy = "no_proxy"
15+
httpProxy = "http_proxy"
16+
httpsProxy = "https_proxy"
17+
noProxy = "no_proxy"
1818
)
1919

2020
// Proxy manages the proxy environment variables
2121
type Proxy struct {
2222
plugins.Plugin
23-
http string
23+
http string
2424
https string
25-
skip string
25+
skip string
2626
}
2727

2828
func init() {

0 commit comments

Comments
 (0)