mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Hapi doesn't parse query string params
This commit is contained in:
parent
ab5e444ed4
commit
d50c45280c
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ export function registerBulk(server) {
|
|||
handler: function (req, reply) {
|
||||
const boundCallWithRequest = _.partial(server.plugins.elasticsearch.callWithRequest, req);
|
||||
const indexPattern = req.params.id;
|
||||
const usePipeline = req.query.pipeline;
|
||||
const usePipeline = req.query.pipeline === 'true';
|
||||
const delimiter = _.get(req.query, 'delimiter', ',');
|
||||
const responseStream = new PassThrough();
|
||||
const parser = parse({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue