Skip to content

Commit aa4549f

Browse files
chore: increase the system test delay (#291)
This change is made to address the error: ``` Error: Quota exceeded for quota metric 'clouderrorreporting.googleapis.com/manage_error_events_data_requests' and limit 'ManageErrorEventsDataRequestsPerMinutePerUser' of service 'clouderrorreporting.googleapis.com' ```
1 parent 542429a commit aa4549f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

system-test/error-reporting.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,6 @@ describe('error-reporting', () => {
496496
while (shouldContinue()) {
497497
let prevPageToken: string|undefined;
498498
let allGroups: ErrorGroupStats[]|undefined;
499-
const page = 1;
500499
while (shouldContinue() && (!allGroups || allGroups.length > 0)) {
501500
const response = await transport.getAllGroups(
502501
SERVICE, VERSION, PAGE_SIZE, prevPageToken);
@@ -514,7 +513,7 @@ describe('error-reporting', () => {
514513
messageTest(errItem.representative.message));
515514
});
516515
groups = groups.concat(filteredGroups);
517-
await delay(5000);
516+
await delay(15000);
518517
}
519518
}
520519

0 commit comments

Comments
 (0)