mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-07 05:53:46 +00:00
This commit is contained in:
parent
99f0c96df4
commit
a17fc68dd4
@ -53,6 +53,7 @@ const IngestionLogsModal: FC<IngestionLogsModalProps> = ({
|
|||||||
ingestion_task?: string;
|
ingestion_task?: string;
|
||||||
profiler_task?: string;
|
profiler_task?: string;
|
||||||
usage_task?: string;
|
usage_task?: string;
|
||||||
|
lineage_task?: string;
|
||||||
}>
|
}>
|
||||||
) => {
|
) => {
|
||||||
switch (pipelineType) {
|
switch (pipelineType) {
|
||||||
@ -67,6 +68,10 @@ const IngestionLogsModal: FC<IngestionLogsModalProps> = ({
|
|||||||
case PipelineType.Usage:
|
case PipelineType.Usage:
|
||||||
setLogs(gzipToStringConverter(res.data?.usage_task || ''));
|
setLogs(gzipToStringConverter(res.data?.usage_task || ''));
|
||||||
|
|
||||||
|
break;
|
||||||
|
case PipelineType.Lineage:
|
||||||
|
setLogs(gzipToStringConverter(res.data?.lineage_task || ''));
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user