Skip to content

Commit 51f2b22

Browse files
authored
[kbn/failed-test-reporter] avoid creating GH issue for failed ES snapshot fetch (#241027)
related to #223770 This PR should prevent from opening GH issues when our test infra fails to get the ES snapshot
1 parent df3540a commit 51f2b22

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/kbn-failed-test-reporter-cli/failed_tests_reporter/get_failures.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ const isLikelyIrrelevant = (name: string, failure: string) => {
6969
return true;
7070
}
7171

72+
if (failure.includes('Unable to read snapshot manifest: Internal Server Error')) {
73+
return true;
74+
}
75+
7276
return false;
7377
};
7478

0 commit comments

Comments
 (0)