mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-02 11:39:12 +00:00
MINOR: Fix unsupported Pipeline entity for lineage (#21069)
(cherry picked from commit a7adda84147dfdffd3a97d73592f1508f69bb44c)
This commit is contained in:
parent
7e5cbb85f7
commit
5ab9ea2240
@ -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()));
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user