forked from github/plane
fix: connection error when signing in with code
This commit is contained in:
parent
5190ea7280
commit
b40fd4bbc2
@ -6,8 +6,10 @@ from urllib.parse import urlparse
|
|||||||
|
|
||||||
def redis_instance():
|
def redis_instance():
|
||||||
# connect to redis
|
# connect to redis
|
||||||
if settings.DOCKERIZED or os.environ.get(
|
if (
|
||||||
"DJANGO_SETTINGS_MODULE", "plane.settings.local"
|
settings.DOCKERIZED
|
||||||
|
or os.environ.get("DJANGO_SETTINGS_MODULE", "plane.settings.production")
|
||||||
|
== "plane.settings.local"
|
||||||
):
|
):
|
||||||
ri = redis.Redis.from_url(settings.REDIS_URL, db=0)
|
ri = redis.Redis.from_url(settings.REDIS_URL, db=0)
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user