-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to debug with server=n #48188
Conversation
Before this change one needed to re-start debugging several times, as we launched multiple JVMs in debug mode. With this option the IDE has the option to re-launch and listen for connections again leading for to a more pleasant experience.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
FWIW, once we address #46118 we'll be able have IntellIj setup this run configuration for us on project import.
Before this change one needed to re-start debugging several times, as we launched multiple JVMs in debug mode. With this option the IDE has the option to re-launch and listen for connections again leading for to a more pleasant experience.
Before this change one needed to re-start debugging several times, as we launched multiple JVMs in debug mode. With this option the IDE has the option to re-launch and listen for connections again leading for to a more pleasant experience.
@@ -43,6 +43,12 @@ supports a remote debugging option: | |||
./gradlew run --debug-jvm | |||
--------------------------------------------------------------------------- | |||
|
|||
This will instruct all JVMs (including any that run cli tools such as creating the keyring or adding users) | |||
to suspend and initiate a debug connection on port incrementing from 5005. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor: double white space before the 5005
.
Remove extra whitespace and highlight the starting port number. Follows: elastic#48188
Remove extra whitespace and highlight the starting port number. Follows: #48188
Pinging @elastic/es-core-infra (:Core/Infra/Build) |
Before this change one needed to re-start debugging several times, as we
launched multiple JVMs in debug mode.
With this option the IDE has the option to re-launch and listen for
connections again leading for to a more pleasant experience.