Skip to content

Commit

Permalink
Fix default redis url to pass check in redis-py>4.4 (#14344)
Browse files Browse the repository at this point in the history
Signed-off-by: Chandler Swift <[email protected]>
Co-authored-by: Rebeccah Hunter <[email protected]>
  • Loading branch information
ChandlerSwift and rebeccahhh authored Aug 25, 2023
1 parent b55a099 commit 1faea02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awx/settings/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@

# Django Caching Configuration
DJANGO_REDIS_IGNORE_EXCEPTIONS = True
CACHES = {'default': {'BACKEND': 'awx.main.cache.AWXRedisCache', 'LOCATION': 'unix:/var/run/redis/redis.sock?db=1'}}
CACHES = {'default': {'BACKEND': 'awx.main.cache.AWXRedisCache', 'LOCATION': 'unix:///var/run/redis/redis.sock?db=1'}}

# Social Auth configuration.
SOCIAL_AUTH_STRATEGY = 'social_django.strategy.DjangoStrategy'
Expand Down

0 comments on commit 1faea02

Please sign in to comment.