This is an automated email from the ASF dual-hosted git repository.
craigrueda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 5aad12d fix: Fix for updated cache dependency (#9850)
5aad12d is described below
commit 5aad12d78340ac7d39f230ce369d6a1ec09b677e
Author: Craig Rueda <[email protected]>
AuthorDate: Wed May 20 09:42:43 2020 -0700
fix: Fix for updated cache dependency (#9850)
* Fixing missing dependency
* Switching back to cachelib
---
helm/superset/templates/_helpers.tpl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/helm/superset/templates/_helpers.tpl
b/helm/superset/templates/_helpers.tpl
index b56c817..38b9695 100644
--- a/helm/superset/templates/_helpers.tpl
+++ b/helm/superset/templates/_helpers.tpl
@@ -58,7 +58,7 @@ pip install {{ range .Values.additionalRequirements }}{{ . }}
{{ end }}
{{- define "superset-config" }}
import os
-from werkzeug.contrib.cache import RedisCache
+from cachelib.redis import RedisCache
def env(key, default=None):
return os.getenv(key, default)