Skip to content

Commit 79d19d1

Browse files
committed
Address Testing Issue
1 parent 7123f0b commit 79d19d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databricks/labs/ucx/hive_metastore/table_migration_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def get_seen_tables(self, *, scope: set[Table] | None = None) -> dict[str, str]:
119119
tables: list = []
120120
table_lists = Threads.gather("list tables", tasks, self.API_LIMIT)
121121
# Combine tuple of lists to a list
122-
for table_list in table_lists:
122+
for table_list in table_lists[0]:
123123
tables.extend(table_list)
124124
for table in tables:
125125
if not isinstance(table, TableInfo):

0 commit comments

Comments
 (0)