Skip to content

Commit

Permalink
ignore SSL cert warnings from Heroku Redis
Browse files Browse the repository at this point in the history
  • Loading branch information
syphar committed Nov 5, 2024
1 parent 44e8ab7 commit debf11a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stanley/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

from stanley.settings import REDIS_URL

redis_storage = redis.from_url(url=REDIS_URL, decode_responses=True)
redis_storage = redis.from_url(
url=REDIS_URL, decode_responses=True, ssl_cert_reqs="none"
)

0 comments on commit debf11a

Please sign in to comment.