diff --git a/openmetadata-service/src/main/java/org/openmetadata/service/apps/bundles/insights/workflows/dataAssets/processors/DataInsightsEntityEnricherProcessor.java b/openmetadata-service/src/main/java/org/openmetadata/service/apps/bundles/insights/workflows/dataAssets/processors/DataInsightsEntityEnricherProcessor.java index 3b229bb4ca1..fa37d9a7fb6 100644 --- a/openmetadata-service/src/main/java/org/openmetadata/service/apps/bundles/insights/workflows/dataAssets/processors/DataInsightsEntityEnricherProcessor.java +++ b/openmetadata-service/src/main/java/org/openmetadata/service/apps/bundles/insights/workflows/dataAssets/processors/DataInsightsEntityEnricherProcessor.java @@ -218,7 +218,8 @@ public class DataInsightsEntityEnricherProcessor String descriptionSource = ChangeSource.INGESTED.value(); if (changeSummaryMap != null) { - if (changeSummaryMap.containsKey(changeSummaryKey)) { + if (changeSummaryMap.containsKey(changeSummaryKey) + && changeSummaryMap.get(changeSummaryKey).getChangeSource() != null) { descriptionSource = changeSummaryMap.get(changeSummaryKey).getChangeSource().value(); } }