Karel Suta
Karel Suta
@elguardian I see a problem with current Smart router changes. Some environments (for example OCP or some load balancer configuration) support running several Kie servers running under one URL. The...
@gmunozfe The issue I see is with removal of Kie server. Lets say that there is deployed your example and Kie server 2 from network 2 is stopped. In such...
I just think that such limitation can be considered a regression. Such Kie server removal can be more common for example in OpenShift, manual interaction in every case when Kie...
I have briefly checked the management-http functionality from Codehaus Cargo side, it should work if cargo.jboss.management-http.port is set in Cargo configuration. @jeusdi Can you check if that containerProperties value is...
@jeusdi Can you please debug your Cargo execution? If I understand correctly then this plugin should use Cargo Ant plugin. In that case every container property should be passed to...
You may try to use GRADLE_OPTS, see https://discuss.gradle.org/t/how-do-you-attach-a-debugger-to-gradle-so-that-i-can-debug-it-running-a-task/7526 . This Cargo Ant plugin can be debugged as any other java application, you will probably need to import the https://github.com/codehaus-cargo/cargo/tree/master/extensions/ant/tasks to...
Put a breakpoint to https://github.com/codehaus-cargo/cargo/blob/master/core/containers/wildfly/src/main/java/org/codehaus/cargo/container/wildfly/internal/AbstractWildFlyRemoteDeployer.java#L85 . This line should definitely be reached. If it is so check the value of management port. If it is 9990 then it is default...
Try to put breakpoint to constructor - line 74.
Seems that java debug has to be activated differently: https://docs.gradle.org/current/dsl/org.gradle.api.tasks.JavaExec.html try to use parameter --debug-jvm
Hmm, from https://discuss.gradle.org/t/how-do-you-attach-a-debugger-to-gradle-so-that-i-can-debug-it-running-a-task/7526/5 it seems that it can be possible to debug if you set jvm args in gradle.properties file.