зеркало из https://github.com/mozilla/treeherder.git
Bug 1674462 - don't set severity for new intermittent crash bugs
This commit is contained in:
Родитель
0db84b4e87
Коммит
90a84abd39
|
@ -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 = '--';
|
||||
|
|
Загрузка…
Ссылка в новой задаче