From bf6cd01d80e2a525d3dd0da5fec9bac1db314153 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 2 Dec 2022 15:45:46 +0700 Subject: [PATCH] hotfix: garantee new redis vars at startup, #372 --- tubearchivist/home/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubearchivist/home/apps.py b/tubearchivist/home/apps.py index bd823c0..d52db7f 100644 --- a/tubearchivist/home/apps.py +++ b/tubearchivist/home/apps.py @@ -28,9 +28,9 @@ class StartupCheck: print("run startup checks") self.es_version_check() self.release_lock() - ElasitIndexWrap().setup() self.sync_redis_state() self.set_redis_conf() + ElasitIndexWrap().setup() self.make_folders() clear_dl_cache(self.config_handler.config) self.snapshot_check()