Skip to content
Snippets Groups Projects
Commit 58361ec6 authored by thomaswoehlke's avatar thomaswoehlke
Browse files

sprint planning

parent d9980104
No related branches found
No related tags found
2 merge requests!161Issue 66 attempt 01,!160Issue 66 attempt 01
...@@ -197,7 +197,15 @@ ...@@ -197,7 +197,15 @@
* Issue #144 implement RkiServiceUpdate.update_star_schema_incremental * Issue #144 implement RkiServiceUpdate.update_star_schema_incremental
* Issue #145 implement RkiServiceUpdate.update_star_schema_initial * Issue #145 implement RkiServiceUpdate.update_star_schema_initial
* Issue #146 add Tasks and URLs for starting Tasks to rki_views * Issue #146 add Tasks and URLs for starting Tasks to rki_views
* Issue * Issue #147 refactor RkiServiceUpdate.__update_who_date_reported
* Issue #148 refactor RkiServiceUpdate.__update_who_region
* Issue #149 refactor RkiServiceUpdate.__update_who_country
* Issue #150 refactor RkiServiceUpdate.__update_who_global_data
* Issue #151 refactor RkiServiceUpdate.__update_who_global_data_short
* Issue #152 refactor RkiServiceUpdate.__update_who_global_data_initial
* Issue #153 refactor RkiServiceUpdate.update_db
* Issue #154 refactor RkiServiceUpdate.update_db_short
* Issue #155 refactor RkiServiceUpdate.update_db_initial
* Issue * Issue
* Issue * Issue
* Issue * Issue
......
...@@ -17,7 +17,7 @@ class RkiServiceUpdate: ...@@ -17,7 +17,7 @@ class RkiServiceUpdate:
app.logger.debug("------------------------------------------------------------") app.logger.debug("------------------------------------------------------------")
app.logger.debug(" RKI Service Update [ready]") app.logger.debug(" RKI Service Update [ready]")
# TODO: refactor RkiServiceUpdate.__update_who_date_reported # TODO: #147 refactor RkiServiceUpdate.__update_who_date_reported
def __update_who_date_reported(self): def __update_who_date_reported(self):
app.logger.info(" update who_date_reported [begin]") app.logger.info(" update who_date_reported [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
...@@ -38,7 +38,7 @@ class RkiServiceUpdate: ...@@ -38,7 +38,7 @@ class RkiServiceUpdate:
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
return self return self
# TODO: refactor RkiServiceUpdate.__update_who_region # TODO: #148 refactor RkiServiceUpdate.__update_who_region
def __update_who_region(self): def __update_who_region(self):
app.logger.info(" update who_region [begin]") app.logger.info(" update who_region [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
...@@ -60,7 +60,7 @@ class RkiServiceUpdate: ...@@ -60,7 +60,7 @@ class RkiServiceUpdate:
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
return self return self
# TODO: refactor RkiServiceUpdate.__update_who_country # TODO: #149 refactor RkiServiceUpdate.__update_who_country
def __update_who_country(self): def __update_who_country(self):
app.logger.info(" update who_country [begin]") app.logger.info(" update who_country [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
...@@ -102,7 +102,7 @@ class RkiServiceUpdate: ...@@ -102,7 +102,7 @@ class RkiServiceUpdate:
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
return self return self
# TODO: refactor RkiServiceUpdate.__update_who_global_data # TODO: #150 refactor RkiServiceUpdate.__update_who_global_data
def __update_who_global_data(self): def __update_who_global_data(self):
app.logger.info(" update WHO [begin]") app.logger.info(" update WHO [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
...@@ -138,7 +138,7 @@ class RkiServiceUpdate: ...@@ -138,7 +138,7 @@ class RkiServiceUpdate:
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
return self return self
# TODO: refactor RkiServiceUpdate.__update_who_global_data_short # TODO: #151 refactor RkiServiceUpdate.__update_who_global_data_short
def __update_who_global_data_short(self): def __update_who_global_data_short(self):
app.logger.info(" update RKI short [begin]") app.logger.info(" update RKI short [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
...@@ -169,7 +169,7 @@ class RkiServiceUpdate: ...@@ -169,7 +169,7 @@ class RkiServiceUpdate:
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
return self return self
# TODO: refactor RkiServiceUpdate.__update_who_global_data_initial # TODO: #152 refactor RkiServiceUpdate.__update_who_global_data_initial
def __update_who_global_data_initial(self): def __update_who_global_data_initial(self):
app.logger.info(" update RKI initial [begin]") app.logger.info(" update RKI initial [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
...@@ -201,7 +201,7 @@ class RkiServiceUpdate: ...@@ -201,7 +201,7 @@ class RkiServiceUpdate:
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
return self return self
# TODO: refactor RkiServiceUpdate.update_db # TODO: #153 refactor RkiServiceUpdate.update_db
def update_db(self): def update_db(self):
app.logger.info(" update db [begin]") app.logger.info(" update db [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
...@@ -213,7 +213,7 @@ class RkiServiceUpdate: ...@@ -213,7 +213,7 @@ class RkiServiceUpdate:
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
return self return self
# TODO: refactor RkiServiceUpdate.update_db_short # TODO: #154 refactor RkiServiceUpdate.update_db_short
def update_db_short(self): def update_db_short(self):
app.logger.info(" update db short [begin]") app.logger.info(" update db short [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
...@@ -225,7 +225,7 @@ class RkiServiceUpdate: ...@@ -225,7 +225,7 @@ class RkiServiceUpdate:
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
return self return self
# TODO: refactor RkiServiceUpdate.update_db_initial # TODO: #155 refactor RkiServiceUpdate.update_db_initial
def update_db_initial(self): def update_db_initial(self):
app.logger.info(" update db initial [begin]") app.logger.info(" update db initial [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment