Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ private List<String> getJvmArgs() {
esHome.resolve("lib").toString(),
// Special circumstances require some modules (not depended on by the main server module) to be explicitly added:
"--add-modules=jdk.net", // needed to reflectively set extended socket options
"--add-modules=jdk.management.agent", // needed by external debug tools to grab thread and heap dumps
// we control the module path, which may have additional modules not required by server
"--add-modules=ALL-MODULE-PATH",
"-m",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public static void waitForElasticsearchToStart() {
Thread.sleep(STARTUP_SLEEP_INTERVAL_MILLISECONDS);

// Set COLUMNS so that `ps` doesn't truncate its output
psOutput = dockerShell.run("bash -c 'COLUMNS=2000 ps ax'").stdout();
psOutput = dockerShell.run("bash -c 'COLUMNS=3000 ps ax'").stdout();

if (psOutput.contains("org.elasticsearch.bootstrap.Elasticsearch")) {
isElasticsearchRunning = true;
Expand Down