Skip to content

Commit

Permalink
[8.16] [Security Solution] Skip a flaky legacy actions migration upon…
Browse files Browse the repository at this point in the history
… bulk action FTR test (#199200)

**Addresses:** #196462

## Summary

`perform_bulk_action_ess.ts`'s `ESS specific logic` -> `should disable rules and migrate actions` FTR test is flaky in `8.16`. This skips only this particular test.

## More details on flakiness

Flakiness isn't reproducible in `main` which is `v9.0` currently.  It's suspected that modification of rule's SO interferences with rules bulk action performing a legacy action migration. Though a quick fix like waiting for rule execution completion before performing bulk action didn't help. It requires further investigation.

Another idea `8.16` could require some PR from to be backported which fixed this issue in `main`.
  • Loading branch information
maximpn authored Nov 7, 2024
1 parent a8a07df commit e29cc5f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ export default ({ getService }: FtrProviderContext): void => {
await waitForRuleSuccess({ id: rule.id, supertest, log });
});

it('should disable rules and migrate actions', async () => {
// Flaky test see https://github.com/elastic/kibana/issues/196462
// Flakiness reproduced in 8.16 only.
it.skip('should disable rules and migrate actions', async () => {
const ruleId = 'ruleId';
const [connector, rule] = await Promise.all([
supertest
Expand Down

0 comments on commit e29cc5f

Please sign in to comment.