This is an automated email from the ASF dual-hosted git repository. suddjian pushed a commit to branch dashboard-spa-caching in repository https://gitbox.apache.org/repos/asf/superset.git
commit 54d77e0815d5144b8eb4b73f0372d64abdba5cf3 Author: David Aaron Suddjian <[email protected]> AuthorDate: Thu Apr 22 16:23:16 2021 -0700 caching works! remove log message --- superset/models/dashboard.py | 1 - 1 file changed, 1 deletion(-) diff --git a/superset/models/dashboard.py b/superset/models/dashboard.py index c29ae57..c73cce8 100644 --- a/superset/models/dashboard.py +++ b/superset/models/dashboard.py @@ -267,7 +267,6 @@ class Dashboard( # pylint: disable=too-many-instance-attributes unless=lambda: not is_feature_enabled("DASHBOARD_CACHE"), ) def datasets_trimmed_for_slices(self) -> Dict[str, Any]: - logger.info(f"called datasets_trimmed_for_slices for {self.slug}") datasource_slices = utils.indexed(self.slices, "datasource") return { # Filter out unneeded fields from the datasource payload
