-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SLVS-1694 Provide system proxy settings to the SlCore process #5898
Conversation
// no proxy was configured at system level | ||
return null; | ||
} | ||
return new ProxyDto(ProxyType.HTTP, proxyUri.Host, proxyUri.Port); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Handle the case of SOCKS proxies
- Are https and http proxies both considered to be ProxyType.HTTP or?
- Handle unsupported proxy types
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Handled the Socks proxies.
According to this, there is no value for https in the Java proxy type, which SlCore uses.
For unsupported proxy types: returning HTTP seemed the most appropriate, although I added a log for this case.
… proxy is configured and pass it to SlCore.
Quality Gate passedIssues Measures |
SLVS-1694