added browser tests, modified ci script, removed testing for version 0.90.x
This commit is contained in:
Submodule src/elasticsearch updated: da680be427...f58ad85335
@ -3513,6 +3513,9 @@ api.search = ca({
|
||||
type: 'list'
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
fmt: '/_search'
|
||||
}
|
||||
],
|
||||
method: 'POST'
|
||||
|
||||
@ -213,10 +213,8 @@ function exec(transport, spec, params, cb) {
|
||||
|
||||
if (!request.path) {
|
||||
// there must have been some mimimun requirements that were not met
|
||||
throw new TypeError(
|
||||
'Unable to build a path with those params. Supply at least ' +
|
||||
_.keys(spec.urls[spec.urls.length - 1].req).join(', ')
|
||||
);
|
||||
var minUrl = spec.url || spec.urls[spec.urls.length - 1];
|
||||
throw new TypeError('Unable to build a path with those params. Supply at least ' + _.keys(minUrl.req).join(', '));
|
||||
}
|
||||
|
||||
// build the query string
|
||||
|
||||
Reference in New Issue
Block a user