We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 876b92a commit 945594dCopy full SHA for 945594d
1 file changed
extensions/ql-vscode/src/databases/code-search-api.ts
@@ -53,14 +53,14 @@ async function provideOctokitWithThrottling(
53
throttle: {
54
onRateLimit: (retryAfter: number, options: any): boolean => {
55
void showAndLogWarningMessage(
56
- `Request quota exhausted for request ${options.method} ${options.url}. Retrying after ${retryAfter} seconds!`,
+ `Rate Limit detected for request ${options.method} ${options.url}. Retrying after ${retryAfter} seconds!`,
57
);
58
59
return true;
60
},
61
onSecondaryRateLimit: (_retryAfter: number, options: any): void => {
62
63
- `SecondaryRateLimit detected for request ${options.method} ${options.url}`,
+ `Secondary Rate Limit detected for request ${options.method} ${options.url}`,
64
65
66
0 commit comments