Fix issue: Logs not getting displayed in UI for Lineage Workflow #6707 (#6708)

This commit is contained in:
Shailesh Parmar 2022-08-12 17:02:39 +05:30 committed by GitHub
parent 99f0c96df4
commit a17fc68dd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,6 +53,7 @@ const IngestionLogsModal: FC<IngestionLogsModalProps> = ({
ingestion_task?: string;
profiler_task?: string;
usage_task?: string;
lineage_task?: string;
}>
) => {
switch (pipelineType) {
@ -67,6 +68,10 @@ const IngestionLogsModal: FC<IngestionLogsModalProps> = ({
case PipelineType.Usage:
setLogs(gzipToStringConverter(res.data?.usage_task || ''));
break;
case PipelineType.Lineage:
setLogs(gzipToStringConverter(res.data?.lineage_task || ''));
break;
default: