Skip to content

Commit

Permalink
fix: When cleaning up a manifest, the name of the manifest is null
Browse files Browse the repository at this point in the history
  • Loading branch information
zhourui999 committed Apr 11, 2024
1 parent 226e781 commit a2dc7b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public void cleanUnusedManifests(
Snapshot snapshot, Set<String> skippingSet, boolean deleteChangelog) {
cleanUnusedManifestList(snapshot.baseManifestList(), skippingSet);
cleanUnusedManifestList(snapshot.deltaManifestList(), skippingSet);
if (deleteChangelog) {
if (deleteChangelog && snapshot.changelogManifestList() != null) {
cleanUnusedManifestList(snapshot.changelogManifestList(), skippingSet);
}
cleanUnusedIndexManifests(snapshot, skippingSet);
Expand Down

0 comments on commit a2dc7b0

Please sign in to comment.