Jan Hapke
Jan Hapke
custom_score has been deprecated and been replaced by function_score with a script_score now. In order for this to work, scripting must be enabled in elasticsearch.yml: script.disable_dynamic: false See also: http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-scripting.html
I'm trying to read the contents of a file that does not exist, for example like this: ``` $filesystem->getContents('does-not-exist.txt')->then( function($contents) { echo $contents }, function($error) { echo 'ERROR: ' ....
I tried to specify a different webpack config file by calling `jest-webpack --webpack --config webpack.tests.config.js`. That did not work because jest also recognizes the `--config` option and complains about an...