Skip to content

Commit

Permalink
[core] Fix warning log when cleaning up a null changelog manifest (#3197
Browse files Browse the repository at this point in the history
)
  • Loading branch information
zhourui999 authored Apr 11, 2024
1 parent ed31532 commit 5f05554
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 5f05554

Please sign in to comment.