fix: disable fetching app status during warmup

On native Linux this was causing the API to ask for root password

refs #143
This commit is contained in:
fusion44 2022-09-10 15:54:22 +02:00
parent 6098c70eee
commit 4408a6a58c
No known key found for this signature in database

View file

@ -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(),
]
)