This is an automated email from the ASF dual-hosted git repository.
tenthe pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to refs/heads/dev by this push:
new 055ada4986 Fix VS Code JMX port conflict for dev launch (#4620)
055ada4986 is described below
commit 055ada4986aa05c8cac35bf24db0bee7151b1424
Author: Philipp Zehnder <[email protected]>
AuthorDate: Wed Jun 24 11:57:17 2026 +0200
Fix VS Code JMX port conflict for dev launch (#4620)
---
.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",