You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we seem to be cresting right at the edge of the API limit (5000 requests an hour), such that if the timing of the WebKit sync code happens once more in an hour then we will go over. This occurs rarely, but is still something we should be very cautious of.
2020-02-11T12:03:43.060727Z GET https://api.github.com/repos/web-platform-tests/wpt/issues/15431
2020-02-11T12:03:43.107724Z Error: API rate limit exceeded for user ID 16780864.
at errFrom (/srv/lib/github.js:10:15)
at Request.onResponse [as _callback] (/srv/lib/github.js:87:29)
at Request.self.callback (/srv/node_modules/request/request.js:185:22)
at Request.emit (events.js:210:5)
at Request.<anonymous> (/srv/node_modules/request/request.js:1161:10)
at Request.emit (events.js:210:5)
at IncomingMessage.<anonymous> (/srv/node_modules/request/request.js:1083:12)
at Object.onceWrapper (events.js:299:28)
at IncomingMessage.emit (events.js:215:7)
at endReadableNT (_stream_readable.js:1183:12) {
2020-02-11T12:03:43.107745Z statusCode: 403
2020-02-11T12:03:43.107755Z }
As an quick fix for web-platform-tests/wpt.live#26, I plan to drop the WebKit sync schedule to once every 15 minutes (current once every 5), which should be the bulk of API requests. Then we need to look at the code, and see if we can reduce how often we call GitHub APIs.
The text was updated successfully, but these errors were encountered:
See web-platform-tests/wpt.live#26, where this impacted a different service performed by wpt-pr-bot.
Currently we seem to be cresting right at the edge of the API limit (5000 requests an hour), such that if the timing of the WebKit sync code happens once more in an hour then we will go over. This occurs rarely, but is still something we should be very cautious of.
As an quick fix for web-platform-tests/wpt.live#26, I plan to drop the WebKit sync schedule to once every 15 minutes (current once every 5), which should be the bulk of API requests. Then we need to look at the code, and see if we can reduce how often we call GitHub APIs.
The text was updated successfully, but these errors were encountered: