Skip to content

Commit

Permalink
fix(MetadataObjectService): fix wrong key in getCatalogObjectFullName…
Browse files Browse the repository at this point in the history
…s: catalogIdAndNameMap
  • Loading branch information
unknowntpo committed Mar 6, 2025
1 parent c819689 commit 9031bc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ public static Map<Long, String> getCatalogObjectFullNames(List<Long> ids) {
catalogPOs.forEach(
catalogPO -> {
if (catalogPO.getCatalogId() == null) {
catalogIdAndNameMap.put(catalogPO.getMetalakeId(), null);
catalogIdAndNameMap.put(catalogPO.getCatalogId(), null);
return;
}
catalogIdAndNameMap.put(catalogPO.getCatalogId(), catalogPO.getCatalogName());
Expand Down

0 comments on commit 9031bc9

Please sign in to comment.