diff --git a/gitlab/build_manifest.py b/gitlab/build_manifest.py index 11de839d52..f1f08c993b 100755 --- a/gitlab/build_manifest.py +++ b/gitlab/build_manifest.py @@ -59,6 +59,9 @@ def test_get_hostname(): def find_repository_sha(module: str, branchname: str) -> Tuple[str, str]: + # FIXME: This does global search query in the whole gitlab instance. + # It has been working so far by a miracle. It should be limited only to + # the current namespace instead. for project in request('projects?search=' + module): if project['name'] != module: continue