scripts/ci/gitlab-pipeline-status: give more info when pipeline not found

This includes both input parameters (project id and commit) in the
message so to make it easier to debug returned API calls.

Signed-off-by: Cleber Rosa <crosa@redhat.com>
Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Message-Id: <20210222193240.921250-4-crosa@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
master
Cleber Rosa 2021-02-22 14:32:40 -05:00 committed by Thomas Huth
parent 861d1d509b
commit 6179f32eeb
1 changed files with 3 additions and 1 deletions

View File

@ -74,7 +74,9 @@ def get_pipeline_status(project_id, commit_sha1):
# project + commit. If this assumption is false, we can add further
# filters to the url, such as username, and order_by.
if not json_response:
raise NoPipelineFound("No pipeline found")
msg = "No pipeline found for project %s and commit %s" % (project_id,
commit_sha1)
raise NoPipelineFound(msg)
return json_response[0]