Skip to content

Commit

Permalink
fix export
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov-aws committed Oct 25, 2024
1 parent 955b10d commit e2b2f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cid/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def export_analysis(qs, athena, glue):
if dep_cur:
datasets[dataset_name]['dependsOn']['cur'] = True

all_databases = list(set(all_databases))
all_databases = list(set([d for _, d in all_views_and_databases]))
if len(all_databases) > 1:
logger.warning(f'CID only supports one database. Multiple used: {all_databases}') # fixme need to fix database

Expand Down

0 comments on commit e2b2f28

Please sign in to comment.