This is an automated email from the ASF dual-hosted git repository. tenthe pushed a commit to branch vscode-jmx-port-conflict in repository https://gitbox.apache.org/repos/asf/streampipes.git
commit 338e2e60eb962253aa0e25d90b3b83c719178254 Author: Philipp Zehnder <[email protected]> AuthorDate: Tue Jun 23 13:46:43 2026 +0000 Fix VS Code JMX port conflict for dev launch --- .vscode/launch.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0c0141647d..0fcdb2e452 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,6 +9,13 @@ "projectName": "streampipes-service-core", "cwd": "${workspaceFolder}", "console": "integratedTerminal", + "vmArgs": [ + "-Dcom.sun.management.jmxremote.port=10020", + "-Dcom.sun.management.jmxremote.rmi.port=10020", + "-Djava.rmi.server.hostname=localhost", + "-Dcom.sun.management.jmxremote.authenticate=false", + "-Dcom.sun.management.jmxremote.ssl=false" + ], "env": { "SP_BACKEND_HOST": "localhost", "SP_CORE_HOST": "localhost", @@ -44,6 +51,13 @@ "projectName": "streampipes-extensions-all-iiot", "cwd": "${workspaceFolder}", "console": "integratedTerminal", + "vmArgs": [ + "-Dcom.sun.management.jmxremote.port=10021", + "-Dcom.sun.management.jmxremote.rmi.port=10021", + "-Djava.rmi.server.hostname=localhost", + "-Dcom.sun.management.jmxremote.authenticate=false", + "-Dcom.sun.management.jmxremote.ssl=false" + ], "env": { "SP_BACKEND_HOST": "localhost", "SP_CORE_HOST": "localhost",
