Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet committed Jun 15, 2021
1 parent 86e8629 commit b9b4144
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export async function ensureFleetFinalPipelineIsInstalled(esClient: Elasticsearc
ignore: [404],
};
const res = await esClient.ingest.getPipeline(
{ id: FLEET_FINAL_PIPELINE_CONTENT },
{ id: FLEET_FINAL_PIPELINE_ID },
esClientRequestOptions
);

Expand All @@ -201,6 +201,7 @@ export async function ensureFleetFinalPipelineIsInstalled(esClient: Elasticsearc
pipeline: {
nameForInstallation: FLEET_FINAL_PIPELINE_ID,
contentForInstallation: FLEET_FINAL_PIPELINE_CONTENT,
extension: 'yml',
},
});
return { isCreated: true };
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { skipIfNoDockerRegistry } from '../../helpers';

const TEST_INDEX = 'logs-log.log-test';

const FINAL_PIPELINE_ID = '.fleet_final_pipeline';
const FINAL_PIPELINE_ID = '.fleet_final_pipeline-1';

let pkgKey: string;

Expand Down

0 comments on commit b9b4144

Please sign in to comment.