Skip to content

Commit 94efcf6

Browse files
authored
Merge branch '9.0' into backport/9.0/pr-235576
2 parents 2d67b38 + 1c08202 commit 94efcf6

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/core/server/integration_tests/saved_objects/migrations/group3/actions/actions_test_suite.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1969,7 +1969,9 @@ export const runActionTestSuite = ({
19691969
});
19701970
});
19711971

1972-
it('resolves left cluster_shard_limit_exceeded when the action would exceed the maximum normal open shards', async () => {
1972+
// The errors in the issue show something else, but it's tracked:
1973+
// https://github.com/elastic/kibana/issues/188963
1974+
it.skip('resolves left cluster_shard_limit_exceeded when the action would exceed the maximum normal open shards', async () => {
19731975
// Set the max shards per node really low so that any new index that's created would exceed the maximum open shards for this cluster
19741976
await client.cluster.putSettings({ persistent: { cluster: { max_shards_per_node: 1 } } });
19751977
const createIndexPromise = createIndex({

test/plugin_functional/test_suites/usage_collection/usage_counters.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ export default function ({ getService, getPageObjects }: PluginFunctionalProvide
3838
});
3939
}
4040

41-
describe('Usage Counters service', () => {
41+
// Failing: See https://github.com/elastic/kibana/issues/238414
42+
describe.skip('Usage Counters service', () => {
4243
before(async () => {
4344
const key = serializeCounterKey({
4445
domainId: 'usageCollectionTestPlugin',

0 commit comments

Comments
 (0)