Bug Description
I have a proxy configured via the settings.json in a way when connections to certain hosts are not going though the proxy, like the below
{
"http.proxy": "http://proxy.company.com:8080",
"http.noProxy": [
"localhost",
"127.0.0.1",
"*.internal.company.com",
"myserver.local"
]
}
In that case clickhouse connections to the '*.internal.company.com' hosts still go through the proxy, that does not let them through. Clickhouse connections should respect the noProxy settings in that case and go directly to the host
Repro steps
- setup a proxy for VSCode like describe above
- try to connect to clickhouse sitting on one of the whitelisted hosts
- see that the connection is going through the proxy
Expected Behavior
Clickhouse connections should respect the http.noProxy setting and go directly to the host when it's specified there
Actual Behavior
Clickhouse connections do not respect the http.noProxy setting and go through the proxy when they should not
Environment
- DBCode version: 1.28.13
- VS Code (or fork) version: 1.110.0
- OS: Linux, Windows
- Database: Clickhouse
- Connection: (direct/SSH/SSL) direct
Bug Description
I have a proxy configured via the settings.json in a way when connections to certain hosts are not going though the proxy, like the below
In that case clickhouse connections to the '*.internal.company.com' hosts still go through the proxy, that does not let them through. Clickhouse connections should respect the noProxy settings in that case and go directly to the host
Repro steps
Expected Behavior
Clickhouse connections should respect the http.noProxy setting and go directly to the host when it's specified there
Actual Behavior
Clickhouse connections do not respect the http.noProxy setting and go through the proxy when they should not
Environment