diff --git a/src/covid19/blueprints/owid/owid_service.py b/src/covid19/blueprints/owid/owid_service.py index 470f77c6a765b478d8134900cf07bb3a630290d9..94790146bd75afbb3ec22cc12704c2516ac1ba3d 100644 --- a/src/covid19/blueprints/owid/owid_service.py +++ b/src/covid19/blueprints/owid/owid_service.py @@ -28,6 +28,7 @@ class OwidService: def task_database_drop_create(self): self.service_import.import_file() + # TODO self.service_update.update_dimension_tables_only() self.service_update.update_fact_table_incremental_only() return self diff --git a/src/covid19/blueprints/owid/owid_service_update.py b/src/covid19/blueprints/owid/owid_service_update.py index 00302ea793cbadb8232837d55814e6021882fbfd..9be0ecafe2dc4b60d5d609ec556a1d158ab53200 100644 --- a/src/covid19/blueprints/owid/owid_service_update.py +++ b/src/covid19/blueprints/owid/owid_service_update.py @@ -214,7 +214,8 @@ class OwidServiceUpdate: def update_dimension_tables_only(self): app.logger.info(" update_dimension_tables_only [begin]") app.logger.info("------------------------------------------------------------") - self.__update_dimension_tables() + # TODO + # self.__update_dimension_tables() app.logger.info(" update_dimension_tables_only [done]") app.logger.info("------------------------------------------------------------") return self @@ -222,7 +223,8 @@ class OwidServiceUpdate: def update_fact_table_incremental_only(self): app.logger.info(" update_fact_tables_incremental_only [begin]") app.logger.info("------------------------------------------------------------") - self.__update_fact_table_incremental() + # TODO + # self.__update_fact_table_incremental() app.logger.info(" update_fact_tables_incremental_only [done]") app.logger.info("------------------------------------------------------------") return self