Fix info message for RunTask in debug mode (#57974) (#58003)

Fixes #57860

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
Rene Groeschke 2020-06-12 13:32:03 +02:00 committed by GitHub
parent f4199f2ee0
commit cb78c4d29d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ public class RunTask extends DefaultTestClustersTask {
node.setDataPath(getDataPath.apply(node));
}
if (debug) {
logger.lifecycle("Running elasticsearch in debug mode, {} suspending until connected on debugPort {}", node, debugPort);
logger.lifecycle("Running elasticsearch in debug mode, {} expecting running debug server on port {}", node, debugPort);
node.jvmArgs("-agentlib:jdwp=transport=dt_socket,server=n,suspend=y,address=" + debugPort);
debugPort += 1;
}