MINOR: Fix unsupported Pipeline entity for lineage (#21069)

(cherry picked from commit a7adda84147dfdffd3a97d73592f1508f69bb44c)
This commit is contained in:
Mayur Singal 2025-05-05 06:08:56 +05:30 committed by OpenMetadata Release Bot
parent 7e5cbb85f7
commit 5ab9ea2240

View File

@ -894,6 +894,10 @@ public class LineageRepository {
LOG.info("Metric column level lineage is not supported");
return new HashSet<>();
}
case PIPELINE -> {
LOG.info("Pipeline column level lineage is not supported");
return new HashSet<>();
}
default -> throw new IllegalArgumentException(
String.format("Unsupported Entity Type %s for lineage", entityReference.getType()));
}