浏览代码

Remove unused default_params (Issue #1724)

Ask Solem 11 年之前
父节点
当前提交
28e3e1a745
共有 1 个文件被更改,包括 0 次插入7 次删除
  1. 0 7
      celery/backends/redis.py

+ 0 - 7
celery/backends/redis.py

@@ -30,13 +30,6 @@ REDIS_MISSING = """\
 You need to install the redis library in order to use \
 the Redis result store backend."""
 
-default_params = {
-    'host': 'localhost',
-    'port': 6379,
-    'db': 0,
-    'password': None,
-}
-
 
 class RedisBackend(KeyValueStoreBackend):
     """Redis task result store."""