From 356df165a890fb1e9bceda09d2ff52ceaf4bcc81 Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Tue, 25 Oct 2022 14:53:55 -0700 Subject: [PATCH] fix(ingest/tableau): add extra debug info for lineage failure --- metadata-ingestion/src/datahub/ingestion/source/tableau.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau.py b/metadata-ingestion/src/datahub/ingestion/source/tableau.py index 9c2809af026795..fd9b785a4a3456 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau.py @@ -483,12 +483,12 @@ def _create_upstream_table_lineage( # Lineage and Schema details for these will be taken care in self.emit_custom_sql_datasources() if not is_custom_sql and not table.get("columns"): logger.debug( - f"Skipping upstream table with id {table['id']}, no columns" + f"Skipping upstream table with id {table['id']}, no columns: {table}" ) continue elif table["name"] is None: logger.warning( - f"Skipping upstream table {table['id']} from lineage since its name is none" + f"Skipping upstream table {table['id']} from lineage since its name is none: {table}" ) continue