You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given 2 apps in devmode, run subsequently, trying to run them on different loopback addresses:
Case 1: ./mvnw quarkus:dev
ok ./mvnw quarkus:dev -DdebugHost=127.0.1.3
Error, port 5005 already in use, not running in debug mode. A little unexpected
Case 2: ./mvnw quarkus:dev -DdebugHost=127.0.1.2
ok ./mvnw quarkus:dev -DdebugHost=127.0.1.3
ok
Case 3: ./mvnw quarkus:dev -DdebugHost=127.0.0.1
ok ./mvnw quarkus:dev -DdebugHost=127.0.1.3
Error, port 5005 already in use, not running in debug mode. Unexpected
Expected behavior
Case 3 probably should work ok.
Actual behavior
It seems that quarkus tests on whether the debug port is open via trying 127.0.0.1:5005 , even though debugHost is not 127.0.0.1 for the current application instance.
How to Reproduce?
No response
Output of uname -a or ver
No response
Output of java -version
openjdk 17, openjdk 11
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.4.0.Final
Build tool (ie. output of mvnw --version or gradlew --version)
No response
Additional information
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
Given 2 apps in devmode, run subsequently, trying to run them on different loopback addresses:
Case 1:
./mvnw quarkus:dev
ok
./mvnw quarkus:dev -DdebugHost=127.0.1.3
Error, port 5005 already in use, not running in debug mode. A little unexpected
Case 2:
./mvnw quarkus:dev -DdebugHost=127.0.1.2
ok
./mvnw quarkus:dev -DdebugHost=127.0.1.3
ok
Case 3:
./mvnw quarkus:dev -DdebugHost=127.0.0.1
ok
./mvnw quarkus:dev -DdebugHost=127.0.1.3
Error, port 5005 already in use, not running in debug mode. Unexpected
Expected behavior
Case 3 probably should work ok.
Actual behavior
It seems that quarkus tests on whether the debug port is open via trying 127.0.0.1:5005 , even though debugHost is not 127.0.0.1 for the current application instance.
How to Reproduce?
No response
Output of
uname -a
orver
No response
Output of
java -version
openjdk 17, openjdk 11
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.4.0.Final
Build tool (ie. output of
mvnw --version
orgradlew --version
)No response
Additional information
No response
The text was updated successfully, but these errors were encountered: