From 35810ce2bf45a9ea00a740f35ba6eeea0660de5f Mon Sep 17 00:00:00 2001 From: John Bodley <4567245+john-bodley@users.noreply.github.com> Date: Fri, 10 Nov 2017 08:05:20 -0800 Subject: [PATCH] [docstring] Refining warm_up_cache comment (#3815) --- superset/views/core.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/superset/views/core.py b/superset/views/core.py index 09e3f78f1..375a9ed38 100755 --- a/superset/views/core.py +++ b/superset/views/core.py @@ -1677,7 +1677,10 @@ class Superset(BaseSupersetView): @has_access_api @expose("/warm_up_cache/", methods=['GET']) def warm_up_cache(self): - """Warms up the cache for the slice or table.""" + """Warms up the cache for the slice or table. + + Note for slices a force refresh occurs. + """ slices = None session = db.session() slice_id = request.args.get('slice_id')