mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
build_manifest: Increase the number of search results
This increase the number of search results when looking up user branches to 100 items. This should be sufficient for all of our users. Fixes #3
This commit is contained in:
parent
06c76e1d63
commit
597544cd61
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ def request(path: str) -> List[Dict[str, str]]:
|
|||
|
||||
def get_project_branch(project_id: int, name: str) -> Dict[str, str]:
|
||||
print(f"Searching for {name} branch in project {project_id}")
|
||||
path = f"projects/{project_id}/repository/branches?search={name}"
|
||||
path = f"projects/{project_id}/repository/branches?search={name}&per_page=100"
|
||||
results = request(path)
|
||||
|
||||
if not results:
|
||||
|
|
Loading…
Reference in a new issue