From 4408a6a58cb5e5ac94f8cf41e109bb33df58c39c Mon Sep 17 00:00:00 2001 From: fusion44 Date: Sat, 10 Sep 2022 15:54:22 +0200 Subject: [PATCH] fix: disable fetching app status during warmup On native Linux this was causing the API to ask for root password refs #143 --- app/repositories/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/repositories/utils.py b/app/repositories/utils.py index afdf03a..34b3ee1 100644 --- a/app/repositories/utils.py +++ b/app/repositories/utils.py @@ -34,7 +34,7 @@ async def get_full_client_warmup_data() -> List: get_ln_info_lite(), get_fee_revenue(), get_wallet_balance(), - get_app_status(), + # get_app_status(), get_hardware_info(), ] ) @@ -48,7 +48,7 @@ async def get_full_client_warmup_data_bitcoinonly() -> List: *[ get_system_info(), get_btc_info(), - get_app_status(), + # get_app_status(), get_hardware_info(), ] )