Skip to content

Commit

Permalink
Merge 253b577 into 50c06e4
Browse files Browse the repository at this point in the history
  • Loading branch information
kkellerlbl committed Nov 8, 2018
2 parents 50c06e4 + 253b577 commit a414805
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion feeds/storage/mongodb/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ def __init__(self):
host=self.cfg.db_host,
port=self.cfg.db_port,
username=self.cfg.db_user,
password=self.cfg.db_pw)
password=self.cfg.db_pw,
authSource=self.cfg.db_name
)
self.db = self.conn[self.cfg.db_name]
self._setup_indexes()
self._setup_schema()
Expand Down

0 comments on commit a414805

Please sign in to comment.