fix(chart-api): cached-indicator always shows value is cached (#11326)

This commit is contained in:
Ville Brofeldt
2020-10-19 16:46:42 +03:00
committed by GitHub
parent 735123d1f5
commit 917d02efbd

View File

@@ -282,7 +282,7 @@ class QueryContext:
"cache_timeout": self.cache_timeout,
"df": df,
"error": error_message,
"is_cached": cache_key is not None,
"is_cached": cache_value is not None,
"query": query,
"status": status,
"stacktrace": stacktrace,