mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[monitoring] Add version header to Integration installation call (#174509)
The initial install call fails because we don't pass the version header.
This commit is contained in:
parent
66aa37444a
commit
aa1950f655
1 changed files with 4 additions and 1 deletions
|
@ -43,7 +43,10 @@ export const ingestPipelineTabOnClick = async (
|
|||
});
|
||||
|
||||
if (!dashboardFound) {
|
||||
const installPackage = () => services.http!.post('/api/fleet/epm/packages/elasticsearch');
|
||||
const installPackage = () =>
|
||||
services.http!.post('/api/fleet/epm/packages/elasticsearch', {
|
||||
headers: { 'Elastic-Api-Version': '2023-10-31' },
|
||||
});
|
||||
|
||||
const ref = services.overlays!.openModal(
|
||||
toMountPoint(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue