Bug 1674462 - don't set severity for new intermittent crash bugs

This commit is contained in:
Sebastian Hengst 2022-09-13 17:36:31 +02:00
Родитель 0db84b4e87
Коммит 90a84abd39
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -418,15 +418,16 @@ export class BugFilerClass extends React.Component {
keywords.push('intermittent-failure');
}
let priority = 'P5';
const crashSignature = crashSignatures.join('\n');
let severity = 'S4';
const crashSignature = crashSignatures.join('\n');
if (crashSignature.length > 0) {
keywords.push('crash');
// Set no priority for crashes to get them included in triage meetings.
// Set no priority and severity to get them included in triage meetings.
priority = '--';
severity = '--';
}
let severity = 'S4';
if (isSecurityIssue) {
// Set no priority and severity to get them included in triage meetings.
priority = '--';