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

@ -123,6 +123,8 @@ if __name__ == "__main__":
schedule.every(server.request_total_run_seconds).seconds.do(threaded, OMBI.get_all_requests)
if server.request_issues_counts:
schedule.every(server.request_issues_type_run_seconds).seconds.do(threaded, OMBI.get_issues_counts)
if server.issues_total_counts:
schedule.every(server.issues_total_run_seconds).seconds.do(threaded, OMBI.get_all_issues)
if CONFIG.sickchill_enabled:
for server in CONFIG.sickchill_servers: