From e9a26ec3387507163c5c92666f0526239fb427b2 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 19 Jul 2024 10:12:39 -0600 Subject: [PATCH] find_git_parents: Fix githelper URL template Signed-off-by: Zack Cerza --- teuthology/suite/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite/util.py b/teuthology/suite/util.py index 30994c27f..8999f9eaf 100644 --- a/teuthology/suite/util.py +++ b/teuthology/suite/util.py @@ -356,7 +356,7 @@ def refresh(): project, resp.content.decode()) def get_sha1s(project, committish, count): - url = f"base_url/{project}.git/history?committish={committish}&count={count}" + url = f"{base_url}/{project}.git/history?committish={committish}&count={count}" log.info(f"Looking for parent commits: {url}") resp = requests.get(url) resp.raise_for_status()