The Apache HTTP Client used by Camunda HTTP Connector has the option to read some configuration properties from the system properties of the JVM. Currently the HTTP Connector created by the Camunda HTTP Connector does not enable this option.
protected CloseableHttpClient createClient() { return HttpClients.createDefault(); }
The following would create the a Client with the system properties option enabled
protected CloseableHttpClient createClient() { return HttpClients.createSystem(); }
Question: Should the default behavior changed or should this be configurable for example through the connector process engine plugin.
This is the controller panel for Smart Panels app
- is depended on by
-
CAM-5349 Release Camunda Connect 1.0.3 and update connect version in platform
- Closed