Merge pull request #3403 from quay/fix-npe-repo-endpoint
Fix an NPE on the repository API endpoint
This commit is contained in:
commit
530c0705e9
1 changed files with 8 additions and 5 deletions
|
@ -159,12 +159,15 @@ class PreOCIModel(RepositoryDataInterface):
|
|||
tags = None
|
||||
repo_ref = RepositoryReference.for_repo_obj(repo)
|
||||
if include_tags:
|
||||
tags, _ = registry_model.list_repository_tag_history(repo_ref, page=1, size=max_tags, active_tags_only=True)
|
||||
tags, _ = registry_model.list_repository_tag_history(repo_ref, page=1, size=max_tags,
|
||||
active_tags_only=True)
|
||||
tags = [
|
||||
Tag(tag.name, tag.legacy_image.docker_image_id, tag.legacy_image.aggregate_size,
|
||||
tag.lifetime_start_ts,
|
||||
tag.manifest_digest,
|
||||
tag.lifetime_end_ts) for tag in tags
|
||||
Tag(tag.name,
|
||||
tag.legacy_image.docker_image_id if tag.legacy_image_if_present else None,
|
||||
tag.legacy_image.aggregate_size if tag.legacy_image_if_present else None,
|
||||
tag.lifetime_start_ts,
|
||||
tag.manifest_digest,
|
||||
tag.lifetime_end_ts) for tag in tags
|
||||
]
|
||||
|
||||
start_date = datetime.now() - timedelta(days=MAX_DAYS_IN_3_MONTHS)
|
||||
|
|
Reference in a new issue