all repo isn't hashed

This commit is contained in:
Louis Abel 2022-06-10 16:14:22 -07:00
parent 7917876676
commit 541ee349aa
Signed by: label
GPG Key ID: B37E62D143879B36
1 changed files with 6 additions and 0 deletions

View File

@ -521,6 +521,12 @@ class RepoSync:
os.makedirs(dest_path, exist_ok=True)
config_file = open(fname, "w+")
for repo in self.repos:
# The all repo doesn't get hashed. Likely due to how long it takes
# to hash in the first place?
if 'all' in repo:
prehashed = ''
constructed_url = '{}/{}/repo/{}{}/$basearch'.format(
self.repo_base_url,
self.project_id,