We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ec8900 + 1f18bda commit db305cbCopy full SHA for db305cb
src/plugins/kibana/server/routes/api/ingest/register_post.js
@@ -115,7 +115,7 @@ export function registerPost(server) {
115
};
116
117
const pipelineParams = {
118
- path: `_ingest/pipeline/${ingestConfigName}`,
+ path: `/_ingest/pipeline/${ingestConfigName}`,
119
method: 'PUT',
120
body: pipeline
121
src/plugins/kibana/server/routes/api/ingest/register_simulate.js
@@ -21,7 +21,7 @@ export function registerSimulate(server) {
21
const body = ingestSimulateApiKibanaToEsConverter(simulateApiDocument);
22
23
return boundCallWithRequest('transport.request', {
24
- path: '_ingest/pipeline/_simulate',
+ path: '/_ingest/pipeline/_simulate',
25
query: { verbose: true },
26
method: 'POST',
27
body: body
0 commit comments