Skip to content

Commit

Permalink
Use passed password when create a redis connection (#2489)
Browse files Browse the repository at this point in the history
  • Loading branch information
nryanov authored and dlstadther committed Aug 14, 2018
1 parent c696f40 commit 4ab2a90
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions luigi/contrib/redis_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def __init__(self, host, port, db, update_id, password=None,
self.redis_client = redis.StrictRedis(
host=self.host,
port=self.port,
password=self.password,
db=self.db,
socket_timeout=self.socket_timeout,
)
Expand Down

0 comments on commit 4ab2a90

Please sign in to comment.