send max 4 requests to Gitea concurrently

pull/1/head
Jannis R 2020-10-25 21:11:35 +01:00
parent 8330f93a3d
commit 463c1967b4
No known key found for this signature in database
GPG Key ID: 0FE83946296A88A5
2 changed files with 8 additions and 5 deletions

View File

@ -19,6 +19,7 @@
"homepage": "https://github.com/jaedle/mirror-to-gitea#readme",
"dependencies": {
"@octokit/rest": "^16.2.0",
"p-queue": "^6.6.2",
"superagent": "^4.0.0"
}
}

View File

@ -1,5 +1,6 @@
const {Octokit} = require('@octokit/rest');
const request = require('superagent');
const {default: PQueue} = require('p-queue');
async function getGithubRepositories(username, token) {
@ -90,13 +91,14 @@ async function main() {
url: giteaUrl,
token: giteaToken,
};
const giteaUser = await getGiteaUser(gitea);
githubRepositories.forEach(
async repository => {
const queue = new PQueue({ concurrency: 4 });
await queue.addAll(githubRepositories.map(repository => {
return async () => {
await mirror(repository, gitea, giteaUser);
}
);
};
}));
}
main();