We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Bug
TheHive 4.0.0-RC3
In WS configuration, proxy and ssl settings should be stored in proxy and ssl key. In 4.0.0-RC3:
proxy
ssl
"wsConfig": { "wsClientConfig": { "ssl": { // [...] } } } "proxyConfig": { "host": "127.0.0.1" "port": 3128 "protocol": "http" }
It should be:
"wsConfig": { "ssl": { // [...] } "proxy": { "host": "127.0.0.1" "port": 3128 "protocol": "http" } }
The text was updated successfully, but these errors were encountered:
#1392 Fix ws config parsing
4d1774f
To-om
No branches or pull requests
Request Type
Bug
Work Environment
TheHive 4.0.0-RC3
Problem Description
In WS configuration, proxy and ssl settings should be stored in
proxy
andssl
key.In 4.0.0-RC3:
It should be:
The text was updated successfully, but these errors were encountered: