Skip to content

Commit

Permalink
Use correct Redis db.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed May 31, 2012
1 parent 63bf54a commit 650c969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djangosnippets/settings/production.py
Expand Up @@ -61,7 +61,7 @@
'BACKEND': 'redis_cache.RedisCache',
'LOCATION': '%s:%s' % (redis_url.hostname, redis_url.port),
'OPTIONS': {
'DB': 5,
'DB': 0,
'PASSWORD': redis_url.password,
},
'VERSION': os.environ.get('CACHE_VERSION', 0),
Expand Down

0 comments on commit 650c969

Please sign in to comment.