Really functionnal update

This commit is contained in:
Louis Vézina 2017-11-07 00:17:14 -05:00
parent 6496ae94c0
commit 4d6beabfb8
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,6 @@ from fdsend import send_file
import urllib
from init_db import *
from check_update import *
from get_languages import *
from get_providers import *

View File

@ -3,7 +3,7 @@ from get_general_settings import *
import os
import subprocess
def check_and_apply_update:
def check_and_apply_update():
result = subprocess.check_output(["git", "pull", '--dry-run', 'origin', branch], stderr=subprocess.STDOUT).split('\n')
if result[2] is not '':

View File

@ -1,11 +1,12 @@
from get_series import *
from get_episodes import *
from get_subtitle import *
from check_update import *
from apscheduler.schedulers.background import BackgroundScheduler
scheduler = BackgroundScheduler()
scheduler.add_job(update_bazarr, 'interval', hours=6, max_instances=1, coalesce=True, id='update_bazarr', name='Update bazarr from source on Github')
scheduler.add_job(check_and_apply_update, 'interval', hours=6, max_instances=1, coalesce=True, id='update_bazarr', name='Update bazarr from source on Github')
scheduler.add_job(update_series, 'interval', minutes=1, max_instances=1, coalesce=True, id='update_series', name='Update series list from Sonarr')
scheduler.add_job(add_new_episodes, 'interval', minutes=1, max_instances=1, coalesce=True, id='add_new_episodes', name='Add new episodes from Sonarr')
scheduler.add_job(wanted_search_missing_subtitles, 'interval', minutes=15, max_instances=1, coalesce=True, id='wanted_search_missing_subtitles', name='Search for wanted subtitles')