File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
extensions/ql-vscode/src/databases Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,14 +53,14 @@ async function provideOctokitWithThrottling(
5353 throttle : {
5454 onRateLimit : ( retryAfter : number , options : any ) : boolean => {
5555 void showAndLogWarningMessage (
56- `Request quota exhausted for request ${ options . method } ${ options . url } . Retrying after ${ retryAfter } seconds!` ,
56+ `Rate Limit detected for request ${ options . method } ${ options . url } . Retrying after ${ retryAfter } seconds!` ,
5757 ) ;
5858
5959 return true ;
6060 } ,
6161 onSecondaryRateLimit : ( _retryAfter : number , options : any ) : void => {
6262 void showAndLogWarningMessage (
63- `SecondaryRateLimit detected for request ${ options . method } ${ options . url } ` ,
63+ `Secondary Rate Limit detected for request ${ options . method } ${ options . url } ` ,
6464 ) ;
6565 } ,
6666 } ,
You can’t perform that action at this time.
0 commit comments