You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by am...@apache.org on 2021/08/16 13:42:44 UTC

[superset] branch feat/extra_strategies updated (45888ea -> 6eb5dbb)

This is an automated email from the ASF dual-hosted git repository.

amitmiran pushed a change to branch feat/extra_strategies
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 45888ea  fix: typing difficulties
     add 6eb5dbb  chore: split to modules

No new revisions were added by this update.

Summary of changes:
 superset/config.py                                 |   3 +-
 .../{static/.gitkeep => tasks/caching/__init__.py} |   0
 superset/tasks/caching/cache.py                    |  86 ++++++++++++++
 .../tasks/{cache.py => caching/cache_strategy.py}  | 129 +--------------------
 superset/tasks/caching/utils.py                    |  55 +++++++++
 superset/tasks/celery_app.py                       |   3 +-
 tests/integration_tests/strategy_tests.py          |  10 +-
 7 files changed, 150 insertions(+), 136 deletions(-)
 copy superset/{static/.gitkeep => tasks/caching/__init__.py} (100%)
 create mode 100644 superset/tasks/caching/cache.py
 rename superset/tasks/{cache.py => caching/cache_strategy.py} (56%)
 create mode 100644 superset/tasks/caching/utils.py