This repository was archived by the owner on May 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
Fix rate limit of 600 requests per minutes on Gitlab.com #106
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ const request = require('request-promise-native'); | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| const url = require('url'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| const async = require('async'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| const crypto = require('crypto'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| const throttledQueue = require('throttled-queue'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| const throttle = throttledQueue(10, 1000); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| /** | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| * base model | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -36,19 +39,21 @@ class base { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| data.private_token = this.token; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| return new Promise((resolve, reject) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| request.post(`${this.url}${path}`, { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| json: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| body: data, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| insecure: this._insecure, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| proxy: this._proxy, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| resolveWithFullResponse: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| headers: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 'PRIVATE-TOKEN': this.token | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }).then(response => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| if (this.config.get('_createDump')) this.setDump(response, key); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| resolve(response); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }).catch(e => reject(e)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| throttle(() => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| request.post(`${this.url}${path}`, { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| json: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| body: data, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| insecure: this._insecure, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| proxy: this._proxy, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| resolveWithFullResponse: true, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| headers: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 'PRIVATE-TOKEN': this.token | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }).then(response => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| if (this.config.get('_createDump')) this.setDump(response, key); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| resolve(response); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }).catch(e => reject(e)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| throttle(() => { | |
| request.post(`${this.url}${path}`, { | |
| json: true, | |
| body: data, | |
| insecure: this._insecure, | |
| proxy: this._proxy, | |
| resolveWithFullResponse: true, | |
| headers: { | |
| 'PRIVATE-TOKEN': this.token | |
| } | |
| }).then(response => { | |
| if (this.config.get('_createDump')) this.setDump(response, key); | |
| resolve(response); | |
| }).catch(e => reject(e)); | |
| }) | |
| return new Promise((resolve, reject) => throttle(() => { | |
| request.post(`${this.url}${path}`, { | |
| json: true, | |
| body: data, | |
| insecure: this._insecure, | |
| proxy: this._proxy, | |
| resolveWithFullResponse: true, | |
| headers: { | |
| 'PRIVATE-TOKEN': this.token | |
| } | |
| }).then(response => { | |
| if (this.config.get('_createDump')) this.setDump(response, key); | |
| resolve(response); | |
| }).catch(e => reject(e)); | |
| })); |
Outdated
Collaborator
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same suggestion as above. Move throttle one line up and un-indent the request lines to minimize the diff.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's have a way to configure requests per second, as it is done now for parallel. Of course, this means also that:
the declaration of throttle needs to be moved inside the base object.
the new throttle parameter needs to be added in the configuration