Add MaxMind to ini parser
This commit is contained in:
parent
f526a765bc
commit
19eb5ae72c
1 changed files with 5 additions and 1 deletions
|
@ -251,11 +251,15 @@ class INIParser(object):
|
|||
server_id)
|
||||
exit(1)
|
||||
|
||||
maxmind_license_key = env.get('MAXMIND_LICENSE_KEY',
|
||||
self.config.get('global', 'maxmind_license_key'))
|
||||
|
||||
server = TautulliServer(id=server_id, url=scheme + url, api_key=apikey,
|
||||
verify_ssl=verify_ssl, get_activity=get_activity,
|
||||
fallback_ip=fallback_ip, get_stats=get_stats,
|
||||
get_activity_run_seconds=get_activity_run_seconds,
|
||||
get_stats_run_seconds=get_stats_run_seconds)
|
||||
get_stats_run_seconds=get_stats_run_seconds,
|
||||
maxmind_license_key=maxmind_license_key)
|
||||
|
||||
if service == 'ombi':
|
||||
issue_status_counts = boolcheck(env.get(
|
||||
|
|
Loading…
Reference in a new issue