fix: Fix for updated cache dependency (#9850)

* Fixing missing dependency

* Switching back to cachelib
This commit is contained in:
Craig Rueda 2020-05-20 09:42:43 -07:00 committed by GitHub
parent 6f1208f510
commit 5aad12d783
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)