This repository was archived by the owner on May 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
api/extensions/gls-parcelshop-dk Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 2929 " attribute" ,
3030 " taxrule" ,
3131 " review"
32- ]
32+ ],
33+ "apiVersion" : " 5.6"
3334 },
3435 "redis" : {
3536 "host" : " localhost" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ let es = require('elasticsearch')
77const esConfig = {
88 host : config . elasticsearch . host + ':' + config . elasticsearch . port ,
99 log : 'debug' ,
10- apiVersion : '5.5' ,
10+ apiVersion : config . elasticsearch . apiVersion ,
1111 requestTimeout : 1000 * 60 * 60 ,
1212 keepAlive : false
1313}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ cli.command('buildcache', () => {
2121 port : config . elasticsearch . port
2222 } ,
2323 log : 'debug' ,
24- apiVersion : '5.5' ,
24+ apiVersion : config . elasticsearch . apiVersion ,
2525 requestTimeout : 1000 * 60 * 60 ,
2626 keepAlive : false
2727 }
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ class TaxProxy extends AbstractTaxProxy {
6464 const esConfig = { // as we're runing tax calculation and other data, we need a ES indexer
6565 host : this . _config . elasticsearch . host + ':' + this . _config . elasticsearch . port ,
6666 log : 'debug' ,
67- apiVersion : '5.5' ,
67+ apiVersion : this . _config . elasticsearch . apiVersion ,
6868 requestTimeout : 5000
6969 }
7070 if ( this . _config . elasticsearch . user ) {
You can’t perform that action at this time.
0 commit comments