Skip to content

Commit

Permalink
normal config
Browse files Browse the repository at this point in the history
  • Loading branch information
awalsh272 committed Dec 19, 2023
1 parent 7321594 commit 5a81ac9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions puente-analytics-service/lambdas/etl/silver_main.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from silver.create_silver import fill_tables
from silver.create_drop import drop_tables, initialize_tables

DROP_TABLES = False
GET_DIMENSIONS = False
DROP_TABLES = True
GET_DIMENSIONS = True

if __name__=="__main__":
if DROP_TABLES:
drop_tables()
#initialize_tables()
initialize_tables()
fill_tables(GET_DIMENSIONS)

0 comments on commit 5a81ac9

Please sign in to comment.