Merge "Do not overwrite the kept_manifests variable when pruning"

This commit is contained in:
Zuul 2024-11-06 23:27:59 +00:00 committed by Gerrit Code Review
commit 404b903c77

View File

@ -277,8 +277,9 @@ class Storage:
if not manifest_target:
continue
repopath = os.path.join(namespace.path, 'repos/')
kept_manifests = []
for repo in self.backend.list_objects(repopath):
kept_manifests = self._prune(repo, manifest_target)
kept_manifests.extend(self._prune(repo, manifest_target))
# mark/sweep manifest blobs
layers = set()
for manifest in kept_manifests: