This commit is contained in:
Adam Harvey
2020-12-10 15:17:10 -05:00
parent 3aa82aff3f
commit ecb72dda90
3 changed files with 3 additions and 3 deletions
@@ -106,7 +106,7 @@ describe('createRouter', () => {
level: 50,
occurrences: 100,
projectId: 12345,
title: 'error occured',
title: 'error occurred',
uniqueOccurrences: 10,
},
counts: [10, 10, 10, 10, 10, 50],
@@ -40,7 +40,7 @@ describe('RollbarProjectPage component', () => {
level: 50,
occurrences: 100,
projectId: 12345,
title: 'error occured',
title: 'error occurred',
uniqueOccurrences: 10,
},
counts: [10, 10, 10, 10, 10, 50],
@@ -117,7 +117,7 @@ export class JobProcessor implements Processor {
// Complete the current stage
stage.status = 'COMPLETED';
} catch (error) {
// Log to the current stage the error that occured and fail the stage.
// Log to the current stage the error that occurred and fail the stage.
stage.status = 'FAILED';
logger.error(`Stage failed with error: ${error.message}`);