Add possibility to get all issues

This commit is contained in:
Oscar Andersson 2018-12-27 22:07:41 +01:00
parent f950b3719f
commit ba63276df3
5 changed files with 89 additions and 3 deletions

View file

@ -183,9 +183,15 @@ class INIParser(object):
request_issues_type_run_seconds = self.config.getint(section, 'request_type_issues_run_seconds')
issues_total_counts = self.config.getboolean(section, 'get_issues_total_counts')
issues_total_run_seconds = self.config.getint(section, 'issues_total_run_seconds')
server = OmbiServer(server_id, scheme + url, apikey, verify_ssl, request_type_counts,
request_type_run_seconds, request_total_counts,
request_total_run_seconds, request_issues_counts, request_issues_type_run_seconds)
request_total_run_seconds, request_issues_counts,
request_issues_type_run_seconds, issues_total_counts,
issues_total_run_seconds)
if service == 'sickchill':
get_missing = self.config.getboolean(section, 'get_missing')