Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gitlab - update fails when branch qty > gitlab REST API pagination default setting #389

Open
fmancardi opened this issue Feb 24, 2022 · 3 comments

Comments

@fmancardi
Copy link

I've a repo with 22 branches and obviously this is greater than Gitlab default -> 20.
Please add at least add '&per_page=50' or may be '&per_page=100' when building the uri in the following function
public function import_full( $p_repo ) {

# Always pull back full list of repos
$t_repoid = $p_repo->info['hub_repoid'];
$t_uri = $this->api_uri( $p_repo, "projects/$t_repoid/repository/branches" );

# My silly FIX !!! - fmancardi
$t_uri .= '&per_page=50';

may be there is a better solution.
And maybe this '&per_page=xx' need to be added to other REST API call

Best regards

@fmancardi fmancardi changed the title Gitlab - update failed when branch qty > that gitlab REST API pagination setting Gitlab - update fails when branch qty > gitlab REST API pagination default setting Feb 24, 2022
@dregad
Copy link
Member

dregad commented Apr 28, 2022

@fmancardi it would probably be better to implement pagination in this case, as if we just bump the per_page limit sooner or later you or someone else will hit the new limit.

The Gitlab plugin is community-maintained, so contributions are welcome.

I suggest you have a look at how this is done in the SourceGithub plugin, the logic can probably be applied to Gitlab fairly easily.

@fmancardi
Copy link
Author

fmancardi commented Apr 28, 2022 via email

@dregad
Copy link
Member

dregad commented Jul 13, 2022

See #271 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants