mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-19 06:28:03 +00:00
MINOR: Fix unsupported Pipeline entity for lineage (#21069)
This commit is contained in:
parent
f360b3eaf5
commit
a7adda8414
@ -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