From 7ad193f276fe88459214815d3dcc64cd53c0f248 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Tue, 23 Oct 2018 23:23:16 +0300 Subject: [PATCH] build_manifest.py: Add a FIXME comment --- gitlab/build_manifest.py | 3 +++ 1 file changed, 3 insertions(+) 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