Skip to content

Commit 69e7067

Browse files
committed
update to upstream release 6.0.0
1 parent e354b52 commit 69e7067

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
X64?= false
22

3-
ES_FILE_VERSION=5.6.2
3+
ES_FILE_VERSION=6.0.0
44
ES_VERSION=$(ES_FILE_VERSION)
5-
ES_SHA512=db4ec26915d2dc1673307522c168560f2ff7aa6cd3834d2d19effd398c05881b4cb2b08cbad3c8e7dd223a91ddfa2ff8401aae7ac9d69805dc1db8b88d30e393
5+
ES_SHA512=b7830f61577c73fa06fad2b15f876dba5fb239099ce11035a2632035d35a41b25967bd03adb214ef3c286983e7fc3dc27daef1559f66cabd2b24d9394a10a6f8
66
ES_NAME=elasticsearch-$(ES_VERSION)
77
ES_HOME=vendor/$(ES_NAME)
88
ES_LIB=$(ES_HOME)/lib

Vagrantfile-provision.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Set-StrictMode -Version Latest
2-
2+
$ProgressPreference = 'SilentlyContinue'
33
$ErrorActionPreference = 'Stop'
4-
54
trap {
65
Write-Output "ERROR: $_"
76
Write-Output (($_.ScriptStackTrace -split '\r?\n') -replace '^(.*)$','ERROR: $1')
7+
Write-Output (($_.Exception.ToString() -split '\r?\n') -replace '^(.*)$','ERROR EXCEPTION: $1')
88
Exit 1
99
}
1010

elasticsearch.iss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Name: "{app}\plugins"
5959
Source: "setup-helper.dll"; DestDir: "{app}"
6060
Source: "vendor\SetACL-2.2.0\SetACL.exe"; DestDir: "{tmp}"; Flags: deleteafterinstall ignoreversion
6161
Source: "{#ESPath}\bin\elasticsearchw-{#Bits}.exe"; DestDir: "{app}\bin"; DestName: "elasticsearchw.exe"
62+
Source: "{#ESPath}\bin\elasticsearch-env.bat"; DestDir: "{app}\bin"
6263
Source: "{#ESPath}\bin\elasticsearch-keystore.bat"; DestDir: "{app}\bin"
6364
Source: "{#ESPath}\bin\elasticsearch-plugin.bat"; DestDir: "{app}\bin"
6465
Source: "{#ESPath}\bin\elasticsearch-translog.bat"; DestDir: "{app}\bin"

elasticsearchw-update.cmd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ set JVM_OPTIONS=%JVM_OPTIONS% -Dfile.encoding=UTF-8
5555
REM Use our provided JNA always versus the system one
5656
set JVM_OPTIONS=%JVM_OPTIONS% -Djna.nosys=true
5757

58+
REM turn off a JDK optimization that throws away stack traces for common
59+
REM exceptions because stack traces are important for debugging
60+
set JVM_OPTIONS=%JVM_OPTIONS% -XX:-OmitStackTraceInFastThrow
61+
5862
REM use old-style file permissions on JDK9
5963
set JVM_OPTIONS=%JVM_OPTIONS% -Djdk.io.permissionsUseCanonicalPath=true
6064

@@ -66,7 +70,6 @@ set JVM_OPTIONS=%JVM_OPTIONS% -Dio.netty.recycler.maxCapacityPerThread=0
6670
REM log4j 2
6771
set JVM_OPTIONS=%JVM_OPTIONS% -Dlog4j.shutdownHookEnabled=false
6872
set JVM_OPTIONS=%JVM_OPTIONS% -Dlog4j2.disable.jmx=true
69-
set JVM_OPTIONS=%JVM_OPTIONS% -Dlog4j.skipJansi=true
7073

7174
set JVM_CLASSPATH=%ES_LIB%\*
7275

@@ -91,7 +94,8 @@ if exist "%ES_HOME%\jre\bin\client\jvm.dll" set JVM=%ES_HOME%\jre\bin\client\jvm
9194
--JvmMs %JVM_MS% ^
9295
--JvmMx %JVM_MX% ^
9396
%JVM_OPTIONS: = ++JvmOptions % ^
94-
++JvmOptions "-Des.path.home=%ES_HOME%"
97+
++JvmOptions "-Des.path.home=%ES_HOME%" ^
98+
++JvmOptions "-Des.path.conf=%ES_HOME%\config"
9599

96100
rem These settings are saved in the Windows Registry at:
97101
rem

0 commit comments

Comments
 (0)