Skip to content

Commit

Permalink
Fixing ES archive mapping failure (#100835)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
jonathan-buttner and kibanamachine authored May 28, 2021
1 parent a00fa53 commit 692806a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3235,14 +3235,7 @@
}
},
"number_of_replicas": "1",
"number_of_shards": "1",
"routing": {
"allocation": {
"include": {
"_tier": "data_hot"
}
}
}
"number_of_shards": "1"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2920,14 +2920,7 @@
}
},
"number_of_replicas": "1",
"number_of_shards": "1",
"routing": {
"allocation": {
"include": {
"_tier": "data_hot"
}
}
}
"number_of_shards": "1"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ export default function ({ getService }: FtrProviderContext) {
const supertest = getService('supertest');
const esArchiver = getService('esArchiver');

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/100697
describe.skip('Resolver tests for the entity route', () => {
describe('Resolver tests for the entity route', () => {
describe('winlogbeat tests', () => {
before(async () => {
await esArchiver.load('endpoint/resolver/winlogbeat');
Expand Down

0 comments on commit 692806a

Please sign in to comment.