Merge pull request #1400 from cfiehe/fix/null_pointer_when_dropping_published_repo

Fix: Null pointer when dropping a multi-dist published repo
This commit is contained in:
André Roth
2024-12-02 15:47:30 +01:00
committed by GitHub

View File

@@ -1660,6 +1660,11 @@ func (collection *PublishedRepoCollection) Remove(publishedStorageProvider aptly
return err
}
err = collection.LoadComplete(repo, collectionFactory)
if err != nil {
return err
}
removePrefix := true
removePoolComponents := repo.Components()
cleanComponents := []string{}