-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for connection to remote mongodb #23
base: master
Are you sure you want to change the base?
Conversation
runner.py
Outdated
@@ -56,6 +56,8 @@ def parse_config(config_file): | |||
config['loggly_token'] = parser.get('loggly_log', 'token') | |||
|
|||
config['mongo_db'] = parser.get('mongodb', 'database') | |||
config['mongo_host'] = parser.get('mongodb', 'host') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should have default values so people could still use the old mnemosyne config.
the changes look good. it will take us some time to test this though before we can merge. |
I've changed reading of options from config file so that the mongodb host and port have default values if they missing in config file. |
No description provided.