Skip to content

Commit

Permalink
more migration skips
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Sep 11, 2024
1 parent e6c05cb commit 3094fec
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ async function updateRoutingAllocations(
});
}

describe('incompatible_cluster_routing_allocation', () => {
// Failing 9.0 version update: https://github.com/elastic/kibana/issues/192624
describe.skip('incompatible_cluster_routing_allocation', () => {
let client: ElasticsearchClient;
let root: Root;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ function createRoot({ logFileName, hosts }: RootConfig) {
});
}

describe('migration v2', () => {
// Failing 9.0 version update: https://github.com/elastic/kibana/issues/192624
describe.skip('migration v2', () => {
let esServer: TestElasticsearchUtils;
let root: Root;
const migratedIndexAlias = `.kibana_${pkg.version}`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ import { startElasticsearch } from '../kibana_migrator_test_kit';

const logFilePath = Path.join(__dirname, 'read_batch_size.log');

describe('migration v2 - read batch size', () => {
// Failing 9.0 version update: https://github.com/elastic/kibana/issues/192624
describe.skip('migration v2 - read batch size', () => {
let esServer: TestElasticsearchUtils;
let root: Root;
let logs: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ function createRoot() {
);
}

// FAILING: https://github.com/elastic/kibana/issues/98351
describe('migration v2', () => {
// Failing 9.0 version update: https://github.com/elastic/kibana/issues/192624
describe.skip('migration v2', () => {
let esServer: TestElasticsearchUtils;
let root: Root;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ const RELOCATE_TYPES: Record<string, string> = {

export const logFilePath = Path.join(__dirname, 'split_failed_to_clone.test.log');

describe('when splitting .kibana into multiple indices and one clone fails', () => {
// Failing 9.0 version update: https://github.com/elastic/kibana/issues/192624
describe.skip('when splitting .kibana into multiple indices and one clone fails', () => {
let esServer: TestElasticsearchUtils['es'];
let typeRegistry: ISavedObjectTypeRegistry;
let migratorTestKitFactory: () => Promise<KibanaMigratorTestKit>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ const PARALLEL_MIGRATORS = 6;
export const logFilePathFirstRun = Path.join(__dirname, 'dot_kibana_split_1st_run.test.log');
export const logFilePathSecondRun = Path.join(__dirname, 'dot_kibana_split_2nd_run.test.log');

describe('split .kibana index into multiple system indices', () => {
// Failing 9.0 version update: https://github.com/elastic/kibana/issues/192624
describe.skip('split .kibana index into multiple system indices', () => {
let esServer: TestElasticsearchUtils['es'];
let typeRegistry: ISavedObjectTypeRegistry;

Expand Down

0 comments on commit 3094fec

Please sign in to comment.