mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-22 11:50:14 +00:00
fix run sync_redis_state on startup
This commit is contained in:
parent
b0fb2bbb00
commit
7e0abc0d20
@ -8,6 +8,13 @@ from home.src.helper import RedisArchivist
|
||||
from home.src.index_management import index_check
|
||||
|
||||
|
||||
def sync_redis_state():
|
||||
"""make sure redis gets new config.json values"""
|
||||
print("sync redis")
|
||||
config_handler = ArchivistConfig()
|
||||
config_handler.load_new_defaults()
|
||||
|
||||
|
||||
def make_folders():
|
||||
"""make needed cache folders here so docker doesn't mess it up"""
|
||||
folders = ["download", "channels", "videos", "import", "backup"]
|
||||
@ -39,4 +46,5 @@ class HomeConfig(AppConfig):
|
||||
def ready(self):
|
||||
release_lock()
|
||||
index_check()
|
||||
sync_redis_state()
|
||||
make_folders()
|
||||
|
Loading…
Reference in New Issue
Block a user