Skip to content

Commit 3c60625

Browse files
authored
improve performance of [GithubLastCommit] [GitlabLastCommit] [GiteaLastCommit] (#10046)
* improve performance of last commit badges * pass param in the right place
1 parent 5405dad commit 3c60625

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

services/gitea/gitea-last-commit.service.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default class GiteaLastCommit extends GiteaBase {
126126
return super.fetch({
127127
schema,
128128
url: `${baseUrl}/api/v1/repos/${user}/${repo}/commits`,
129-
options: { searchParams: { sha: branch, path } },
129+
options: { searchParams: { sha: branch, path, limit: 1 } },
130130
httpErrors: httpErrorsFor(),
131131
})
132132
}

services/github/github-last-commit.service.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export default class GithubLastCommit extends GithubAuthV3Service {
9898
async fetch({ user, repo, branch, path }) {
9999
return this._requestJson({
100100
url: `/repos/${user}/${repo}/commits`,
101-
options: { searchParams: { sha: branch, path } },
101+
options: { searchParams: { sha: branch, path, per_page: 1 } },
102102
schema,
103103
httpErrors: httpErrorsFor(),
104104
})

services/gitlab/gitlab-last-commit.service.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default class GitlabLastCommit extends GitLabBase {
7979
url: `${baseUrl}/api/v4/projects/${encodeURIComponent(
8080
project,
8181
)}/repository/commits`,
82-
options: { searchParams: { ref_name: ref, path } },
82+
options: { searchParams: { ref_name: ref, path, per_page: 1 } },
8383
schema,
8484
httpErrors: httpErrorsFor('project not found'),
8585
})

0 commit comments

Comments
 (0)