You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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